Differential D20906 Diff 49828 src/applications/dashboard/xaction/panel/PhabricatorDashboardTextPanelTextTransaction.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/dashboard/xaction/panel/PhabricatorDashboardTextPanelTextTransaction.php
| <?php | <?php | ||||
| final class PhabricatorDashboardTextPanelTextTransaction | final class PhabricatorDashboardTextPanelTextTransaction | ||||
| extends PhabricatorDashboardPanelPropertyTransaction { | extends PhabricatorDashboardPanelPropertyTransaction { | ||||
| const TRANSACTIONTYPE = 'text.text'; | const TRANSACTIONTYPE = 'text.text'; | ||||
| protected function getPropertyKey() { | protected function getPropertyKey() { | ||||
| return 'text'; | return 'text'; | ||||
| } | } | ||||
| public function newRemarkupChanges() { | |||||
| $changes = array(); | |||||
| $changes[] = $this->newRemarkupChange() | |||||
| ->setOldValue($this->getOldValue()) | |||||
| ->setNewValue($this->getNewValue()); | |||||
| return $changes; | |||||
| } | |||||
| } | } | ||||