Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conpherence/storage/ConpherenceTransaction.php
| <?php | <?php | ||||
| final class ConpherenceTransaction extends PhabricatorApplicationTransaction { | final class ConpherenceTransaction extends PhabricatorApplicationTransaction { | ||||
| public function getApplicationName() { | public function getApplicationName() { | ||||
| return 'conpherence'; | return 'conpherence'; | ||||
| } | } | ||||
| public function getApplicationTransactionType() { | public function getApplicationTransactionType() { | ||||
| return PhabricatorConpherencePHIDTypeThread::TYPECONST; | return PhabricatorConpherenceThreadPHIDType::TYPECONST; | ||||
| } | } | ||||
| public function getApplicationTransactionCommentObject() { | public function getApplicationTransactionCommentObject() { | ||||
| return new ConpherenceTransactionComment(); | return new ConpherenceTransactionComment(); | ||||
| } | } | ||||
| public function getNoEffectDescription() { | public function getNoEffectDescription() { | ||||
| switch ($this->getTransactionType()) { | switch ($this->getTransactionType()) { | ||||
| ▲ Show 20 Lines • Show All 132 Lines • Show Last 20 Lines | |||||