mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
18 lines
381 B
PHP
18 lines
381 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorAphlictManagementStartWorkflow
|
||
|
extends PhabricatorAphlictManagementWorkflow {
|
||
|
|
||
|
public function didConstruct() {
|
||
|
$this
|
||
|
->setName('start')
|
||
|
->setSynopsis(pht('Start the notifications server.'))
|
||
|
->setArguments(array());
|
||
|
}
|
||
|
|
||
|
public function execute(PhutilArgumentParser $args) {
|
||
|
return $this->executeStartCommand();
|
||
|
}
|
||
|
|
||
|
}
|