Completed
Branch master (ed64b8)
by Adrian Florin
03:41 queued 01:34
created
test/Util/ErrorToExceptionConverterTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             trigger_error("Dummy", E_USER_ERROR);
46 46
         } catch (\Exception $e) {
47 47
             $this->assertEquals(
48
-                sprintf("Dummy in %s on line %s!", __FILE__, __LINE__ - 3),
48
+                sprintf("Dummy in %s on line %s!", __FILE__, __LINE__ -3),
49 49
                 $e->getMessage()
50 50
             );
51 51
         }
Please login to merge, or discard this patch.
src/Util/ErrorToExceptionConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         if (is_null($exceptionClass)) {
45 45
             $exceptionClass = static::EXCEPTION_THROW_CLASS;
46 46
         }
47
-        set_error_handler(function ($errorNumber, $errorMessage, $errorFile, $errorLine) use ($exceptionClass) {
47
+        set_error_handler(function($errorNumber, $errorMessage, $errorFile, $errorLine) use ($exceptionClass) {
48 48
             throw new $exceptionClass(
49 49
                 sprintf("%s in %s on line %s!", $errorMessage, $errorFile, $errorLine),
50 50
                 $errorNumber
Please login to merge, or discard this patch.
test/Helper/ArrayHelperTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                         ]
106 106
                     ]
107 107
                 ],
108
-                ['foo','bar','baz','qux']
108
+                ['foo', 'bar', 'baz', 'qux']
109 109
             ],
110 110
             [
111 111
                 [[[['a' => ['bar']]]]],
Please login to merge, or discard this patch.