Passed
Push — master ( 721982...e05dd3 )
by Nils
03:23
created
src/Check/Docker/Container/ContainerIsRunningCheck.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
         exec($command, $output, $returnValue);
25 25
 
26
-        $isRunning = ((bool)$output[0]);
26
+        $isRunning = ((bool) $output[0]);
27 27
 
28 28
         if ($isRunning) {
29 29
             return new Result(Result::STATUS_PASS, 'The container ' . $this->containerName . ' is running.');
Please login to merge, or discard this patch.