mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
daadf95537
Summary: Ref T6822. Test Plan: `grep`. This method is only called from within `PhutilArgumentWorkflow::__construct`. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11415
17 lines
380 B
PHP
17 lines
380 B
PHP
<?php
|
|
|
|
final class PhabricatorAphlictManagementStopWorkflow
|
|
extends PhabricatorAphlictManagementWorkflow {
|
|
|
|
protected function didConstruct() {
|
|
$this
|
|
->setName('stop')
|
|
->setSynopsis(pht('Stop the notifications server.'))
|
|
->setArguments(array());
|
|
}
|
|
|
|
public function execute(PhutilArgumentParser $args) {
|
|
return $this->executeStopCommand();
|
|
}
|
|
|
|
}
|