Passed
Push — master ( 0c85ef...244c4e )
by Enjoys
07:14
created
src/Parse/Json.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         }
58 58
 
59 59
 
60
-        $this->logger->error("(" . json_last_error() . ") " . json_last_error_msg());
60
+        $this->logger->error("(".json_last_error().") ".json_last_error_msg());
61 61
 
62 62
         return null;
63 63
     }
Please login to merge, or discard this patch.
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.