Passed
Push — master ( 0c85ef...244c4e )
by Enjoys
07:14
created
src/Parse.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     public function __construct()
53 53
     {
54 54
 
55
-         $this->logger = new NullLogger();
55
+            $this->logger = new NullLogger();
56 56
     }
57 57
 
58 58
     public function addConfigSource(string $source): void
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public function addConfig($params, array $options = [], string $parseClass = self::INI): void
69 69
     {
70
-        $params = (array)$params;
70
+        $params = (array) $params;
71 71
 
72 72
         if (!class_exists($parseClass)) {
73 73
             throw new \Exception(sprintf('Not found parse class: %s', $parseClass));
Please login to merge, or discard this patch.