Completed
Push — master ( 1f0a28...847154 )
by ophelie
02:07
created
src/DockerCompose/Manager/ComposeManager.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         $command = 'restart';
113 113
 
114 114
         if ($timeout != 10) {
115
-            $command .= ' --timeout='.$timeout;
115
+            $command .= ' --timeout=' . $timeout;
116 116
         }
117 117
 
118 118
         return $this->processResult(
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,12 +69,12 @@
 block discarded – undo
69 69
         );
70 70
     }
71 71
 
72
-     /**
73
-     * Stop service containers
74
-     *
75
-     * @param mixed   $composeFiles  The compose files names
76
-     * @param string  $signal        Optionnal to precise SIGNAL to send to the container for SIGKILL replacement.
77
-     */
72
+        /**
73
+         * Stop service containers
74
+         *
75
+         * @param mixed   $composeFiles  The compose files names
76
+         * @param string  $signal        Optionnal to precise SIGNAL to send to the container for SIGKILL replacement.
77
+         */
78 78
     public function kill($composeFiles = array(), $signal = 'SIGKILL')
79 79
     {
80 80
         $command = 'kill';
Please login to merge, or discard this patch.