Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/trigger/PhabricatorProjectTriggerRule.php
| Show First 20 Lines • Show All 54 Lines • ▼ Show 20 Lines | abstract class PhabricatorProjectTriggerRule | ||||
| protected function isValidRule() { | protected function isValidRule() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| protected function newInvalidView() { | protected function newInvalidView() { | ||||
| return null; | return null; | ||||
| } | } | ||||
| public function getSoundEffects() { | |||||
| return array(); | |||||
| } | |||||
| final public function getDropTransactions($object, $value) { | final public function getDropTransactions($object, $value) { | ||||
| return $this->newDropTransactions($object, $value); | return $this->newDropTransactions($object, $value); | ||||
| } | } | ||||
| final public function setViewer(PhabricatorUser $viewer) { | final public function setViewer(PhabricatorUser $viewer) { | ||||
| $this->viewer = $viewer; | $this->viewer = $viewer; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 79 Lines • Show Last 20 Lines | |||||