Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/storage/PhabricatorConfigTransaction.php
| <?php | <?php | ||||
| final class PhabricatorConfigTransaction | final class PhabricatorConfigTransaction | ||||
| extends PhabricatorApplicationTransaction { | extends PhabricatorApplicationTransaction { | ||||
| const TYPE_EDIT = 'config:edit'; | const TYPE_EDIT = 'config:edit'; | ||||
| public function getApplicationName() { | public function getApplicationName() { | ||||
| return 'config'; | return 'config'; | ||||
| } | } | ||||
| public function getApplicationTransactionType() { | public function getApplicationTransactionType() { | ||||
| return PhabricatorConfigPHIDTypeConfig::TYPECONST; | return PhabricatorConfigConfigPHIDType::TYPECONST; | ||||
| } | } | ||||
| public function getApplicationTransactionCommentObject() { | public function getApplicationTransactionCommentObject() { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getTitle() { | public function getTitle() { | ||||
| $author_phid = $this->getAuthorPHID(); | $author_phid = $this->getAuthorPHID(); | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||