Passed
Push — master ( 435ddd...eaf173 )
by Enjoys
01:53
created
src/Config.php 2 patches
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@  discard block
 block discarded – undo
33 33
 
34 34
 /**
35 35
  * Description of Config
36
-
37 36
  * @author Enjoys
38 37
  */
39 38
 class Config implements \Psr\Log\LoggerAwareInterface
@@ -85,7 +84,7 @@  discard block
 block discarded – undo
85 84
     
86 85
     private function parse(string $parseClass, string $config, $options, ?string $namespace = null)
87 86
     {
88
-       /** @var  ParseInterface $parser */
87
+        /** @var  ParseInterface $parser */
89 88
         $parser = new $parseClass($config);
90 89
         $parser->setOptions($options);
91 90
         $parser->setLogger($this->logger);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
             }
77 77
         }
78 78
         
79
-        if(is_string($config)){
79
+        if (is_string($config)) {
80 80
             $this->parse($parseClass, $config, $options);
81 81
         }
82 82
 
Please login to merge, or discard this patch.