mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
22 lines
559 B
PHP
22 lines
559 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorDaemonManagementStartWorkflow
|
||
|
extends PhabricatorDaemonManagementWorkflow {
|
||
|
|
||
|
public function didConstruct() {
|
||
|
$this
|
||
|
->setName('start')
|
||
|
->setSynopsis(
|
||
|
pht(
|
||
|
'Start the standard configured collection of Phabricator daemons. '.
|
||
|
'This is appropriate for most installs. Use **phd launch** to '.
|
||
|
'customize which daemons are launched.'))
|
||
|
->setArguments(array());
|
||
|
}
|
||
|
|
||
|
public function execute(PhutilArgumentParser $args) {
|
||
|
return $this->executeStartCommand();
|
||
|
}
|
||
|
|
||
|
}
|