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