mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
f034fd80db
Summary: We can get this out of PHIDType reasonably in all cases and simplify implementation here. None of these translate correctly anyway so they're basically debugging/development strings. Test Plan: `grep`, browsed some transactions Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D6786
19 lines
354 B
PHP
19 lines
354 B
PHP
<?php
|
|
|
|
final class PhabricatorUserTransaction
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
public function getApplicationName() {
|
|
return 'user';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return PhabricatorPeoplePHIDTypeUser::TYPECONST;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|