Differential D9986 Diff 24115 src/applications/harbormaster/storage/HarbormasterBuildTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/storage/HarbormasterBuildTransaction.php
| <?php | <?php | ||||
| final class HarbormasterBuildTransaction | final class HarbormasterBuildTransaction | ||||
| extends PhabricatorApplicationTransaction { | extends PhabricatorApplicationTransaction { | ||||
| const TYPE_CREATE = 'harbormaster:build:create'; | const TYPE_CREATE = 'harbormaster:build:create'; | ||||
| const TYPE_COMMAND = 'harbormaster:build:command'; | const TYPE_COMMAND = 'harbormaster:build:command'; | ||||
| public function getApplicationName() { | public function getApplicationName() { | ||||
| return 'harbormaster'; | return 'harbormaster'; | ||||
| } | } | ||||
| public function getApplicationTransactionType() { | public function getApplicationTransactionType() { | ||||
| return HarbormasterPHIDTypeBuild::TYPECONST; | return HarbormasterBuildPHIDType::TYPECONST; | ||||
| } | } | ||||
| public function getTitle() { | public function getTitle() { | ||||
| $author_phid = $this->getAuthorPHID(); | $author_phid = $this->getAuthorPHID(); | ||||
| $old = $this->getOldValue(); | $old = $this->getOldValue(); | ||||
| $new = $this->getNewValue(); | $new = $this->getNewValue(); | ||||
| ▲ Show 20 Lines • Show All 65 Lines • Show Last 20 Lines | |||||