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