Passed
Pull Request — master (#12)
by Jake
04:29
created
src/IOException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
     public static function initializeFromError($errno, $errstr, $errfile, $errline, $context = null)
19 19
     {
20 20
         $class = __CLASS__;
21
-        throw new $class($errno, (int) $errstr, $errfile, $errline);
21
+        throw new $class($errno, (int)$errstr, $errfile, $errline);
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/ParseException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,6 +45,6 @@
 block discarded – undo
45 45
     public static function initializeFromError($errno, $errstr, $errfile, $errline, $context = null)
46 46
     {
47 47
         $class = __CLASS__;
48
-        throw new $class($errno, (int) $errstr, $errfile, $errline);
48
+        throw new $class($errno, (int)$errstr, $errfile, $errline);
49 49
     }
50 50
 }
Please login to merge, or discard this patch.