Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | public function stop() |
||
55 | { |
||
56 | /*$process = $this->runCommand([ |
||
57 | $this->getBinary(), |
||
58 | 'status', |
||
59 | ], true); |
||
60 | |||
61 | // Already stopped |
||
62 | if ('terminated' === $process->getStatus()) { |
||
63 | return; |
||
64 | }*/ |
||
65 | |||
66 | $this->runCommand([ |
||
67 | $this->getBinary(), |
||
68 | 'stop', |
||
69 | ], true); |
||
70 | } |
||
71 | |||
107 |