Passed
Push — master ( 28ea8d...17800f )
by Enjoys
01:51
created
src/Parse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     public function parse()
86 86
     {
87 87
         if (is_null($this->configSource)) {
88
-            if ($this->logger instanceof LoggerInterface){
88
+            if ($this->logger instanceof LoggerInterface) {
89 89
                 $this->logger->notice('Add data for parsing');
90 90
             }
91 91
             return null;
Please login to merge, or discard this patch.
src/Parse/YAML.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     protected function parseString(string $input)
23 23
     {
24 24
         try {
25
-            return Symfony\Yaml::parse($input, (int)$this->getOption('flags', 0));
25
+            return Symfony\Yaml::parse($input, (int) $this->getOption('flags', 0));
26 26
         } catch (Symfony\Exception\ParseException $e) {
27 27
             if ($this->logger instanceof LoggerInterface) {
28 28
                 $this->logger->error($e->getMessage());
Please login to merge, or discard this patch.