Completed
Push — master ( b780b9...dbf744 )
by Terry
02:21
created
bin/runner.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,8 +148,7 @@
 block discarded – undo
148 148
                     {
149 149
                         $value = $argv[$i + 1];
150 150
                         $i++;
151
-                    }
152
-                    else
151
+                    } else
153 152
                     {
154 153
                         $value = isset($out[$key]) ? $out[$key] : true;
155 154
                     }
Please login to merge, or discard this patch.
src/Tester.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -132,8 +132,7 @@  discard block
 block discarded – undo
132 132
                 $this->getLogger()->info("[{$testName}] - Starting...");
133 133
                 $testCase->runTest($this);
134 134
                 $this->getLogger()->info("[{$testName}] - " . $testCase->getSuccessMessage());
135
-            }
136
-            catch ( \Exception $e )
135
+            } catch ( \Exception $e )
137 136
             {
138 137
                 $expectedCode       = $testCase->getExceptionCode();
139 138
                 $expectedClass      = $testCase->getExceptionType();
@@ -723,8 +722,7 @@  discard block
 block discarded – undo
723 722
         if ( is_callable($this->formatter) )
724 723
         {
725 724
             $message = $this->formatter->__invoke(static::$logLevels[$level][4], $message, $context);
726
-        }
727
-        else
725
+        } else
728 726
         {
729 727
             $message = $this->formatMessage($level, $message, $context);
730 728
         }
Please login to merge, or discard this patch.