Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/aphlict/management/PhabricatorAphlictManagementDebugWorkflow.php
12256 views
1
<?php
2
3
final class PhabricatorAphlictManagementDebugWorkflow
4
extends PhabricatorAphlictManagementWorkflow {
5
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());
14
}
15
16
public function execute(PhutilArgumentParser $args) {
17
$this->parseLaunchArguments($args);
18
19
$this->setDebug(true);
20
21
$this->willLaunch();
22
return $this->launch();
23
}
24
25
}
26
27