Differential D11288 Diff 27128 src/applications/aphlict/management/PhabricatorAphlictManagementStartWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/aphlict/management/PhabricatorAphlictManagementStartWorkflow.php
| <?php | <?php | ||||
| final class PhabricatorAphlictManagementStartWorkflow | final class PhabricatorAphlictManagementStartWorkflow | ||||
| extends PhabricatorAphlictManagementWorkflow { | extends PhabricatorAphlictManagementWorkflow { | ||||
| public function didConstruct() { | public function didConstruct() { | ||||
| parent::didConstruct(); | |||||
| $this | $this | ||||
| ->setName('start') | ->setName('start') | ||||
| ->setSynopsis(pht('Start the notifications server.')) | ->setSynopsis(pht('Start the notifications server.')); | ||||
| ->setArguments(array()); | |||||
| } | } | ||||
| public function execute(PhutilArgumentParser $args) { | public function execute(PhutilArgumentParser $args) { | ||||
| parent::execute($args); | |||||
| return $this->executeStartCommand(); | return $this->executeStartCommand(); | ||||
| } | } | ||||
| } | } | ||||