Differential D20601 Diff 49167 src/applications/daemon/management/PhabricatorDaemonManagementStopWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/daemon/management/PhabricatorDaemonManagementStopWorkflow.php
| Show All 36 Lines | $this | ||||
| 'name' => 'pids', | 'name' => 'pids', | ||||
| 'wildcard' => true, | 'wildcard' => true, | ||||
| ), | ), | ||||
| )); | )); | ||||
| } | } | ||||
| public function execute(PhutilArgumentParser $args) { | public function execute(PhutilArgumentParser $args) { | ||||
| return $this->executeStopCommand( | return $this->executeStopCommand( | ||||
| $args->getArg('pids'), | |||||
| array( | array( | ||||
| 'graceful' => $args->getArg('graceful'), | 'graceful' => $args->getArg('graceful'), | ||||
| 'force' => $args->getArg('force'), | 'force' => $args->getArg('force'), | ||||
| 'gently' => $args->getArg('gently'), | 'gently' => $args->getArg('gently'), | ||||
| )); | )); | ||||
| } | } | ||||
| } | } | ||||