Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/aphlict/management/PhabricatorAphlictManagementStopWorkflow.php
12256 views
1
<?php
2
3
final class PhabricatorAphlictManagementStopWorkflow
4
extends PhabricatorAphlictManagementWorkflow {
5
6
protected function didConstruct() {
7
$this
8
->setName('stop')
9
->setSynopsis(pht('Stop the notification server.'))
10
->setArguments($this->getLaunchArguments());
11
}
12
13
public function execute(PhutilArgumentParser $args) {
14
$this->parseLaunchArguments($args);
15
return $this->executeStopCommand();
16
}
17
18
}
19
20