| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 10 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function resolve(Process $process) |
||
| 12 | { |
||
| 13 | if (str_contains($process->getOutput(), 'memcached is running')) || (str_contains($process->getOutput(), 'active (running)') ) { |
||
|
|
|||
| 14 | $this->check->succeed('is running'); |
||
| 15 | |||
| 16 | return; |
||
| 17 | } |
||
| 18 | |||
| 19 | $this->check->fail('is not running'); |
||
| 20 | } |
||
| 21 | } |
||
| 22 |