Differential D11143 Diff 27108 src/applications/aphlict/management/PhabricatorAphlictManagementDebugWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/aphlict/management/PhabricatorAphlictManagementDebugWorkflow.php
| <?php | <?php | ||||
| final class PhabricatorAphlictManagementDebugWorkflow | final class PhabricatorAphlictManagementDebugWorkflow | ||||
| extends PhabricatorAphlictManagementWorkflow { | extends PhabricatorAphlictManagementWorkflow { | ||||
| public function didConstruct() { | public function didConstruct() { | ||||
| $this | $this | ||||
| ->setName('debug') | ->setName('debug') | ||||
| ->setSynopsis( | ->setSynopsis( | ||||
| pht( | pht( | ||||
| 'Start the notifications server in the foreground and print large '. | 'Start the notifications server in the foreground and print large '. | ||||
| 'volumes of diagnostic information to the console.')) | 'volumes of diagnostic information to the console.')) | ||||
| ->setArguments(array()); | ->setArguments(array()); | ||||
| } | } | ||||
| public function execute(PhutilArgumentParser $args) { | public function execute(PhutilArgumentParser $args) { | ||||
| $this->willLaunch(); | $this->willLaunch(true); | ||||
| return $this->launch(true); | return $this->launch(true); | ||||
| } | } | ||||
| } | } | ||||