Passed
Push — master ( 25cbd8...3d7e23 )
by Mauro
02:02
created
src/Parser/XmlParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
             throw new \Exception('SimpleXML extension is not loaded. Add "ext-simplexml": "*" to your composer.json.');
17 17
         }
18 18
 
19
-        return json_decode(json_encode(simplexml_load_file($filename)),true);
19
+        return json_decode(json_encode(simplexml_load_file($filename)), true);
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/DIC.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     public static function set($key, $content)
120 120
     {
121 121
         if (false === self::has($key)) {
122
-            self::$container[$key] = function ($c) use ($content) {
122
+            self::$container[$key] = function($c) use ($content) {
123 123
 
124 124
                 // if is not a class set the entry value in DIC
125 125
                 if (false === isset($content['class'])) {
Please login to merge, or discard this patch.