Remove product literal strings in "pht()", part 8
[phabricator.git] / src / applications / aphlict / management / PhabricatorAphlictManagementDebugWorkflow.php
blob27459b79adf56eed96583128b1fc1a579a43c70a
1 <?php
3 final class PhabricatorAphlictManagementDebugWorkflow
4 extends PhabricatorAphlictManagementWorkflow {
6 protected function didConstruct() {
7 $this
8 ->setName('debug')
9 ->setSynopsis(
10 pht(
11 'Start the notifications server in the foreground and print large '.
12 'volumes of diagnostic information to the console.'))
13 ->setArguments($this->getLaunchArguments());
16 public function execute(PhutilArgumentParser $args) {
17 $this->parseLaunchArguments($args);
19 $this->setDebug(true);
21 $this->willLaunch();
22 return $this->launch();