Passed
Pull Request — master (#60)
by Andrey
02:54
created
src/Traits/Containable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
     protected function container(string $class, array $parameters = [])
12 12
     {
13
-        if (! isset(static::$containers[$class])) {
13
+        if ( ! isset(static::$containers[$class])) {
14 14
             static::$containers[$class] = Container::getInstance()->make($class, $parameters);
15 15
         }
16 16
 
Please login to merge, or discard this patch.
src/Services/Processors/DeleteJson.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     protected function delete(): bool
15 15
     {
16
-        if (! IlluminateFile::exists($this->targetPath())) {
16
+        if ( ! IlluminateFile::exists($this->targetPath())) {
17 17
             return true;
18 18
         }
19 19
 
Please login to merge, or discard this patch.