Passed
Pull Request — master (#60)
by Andrey
11:17
created
src/Services/Localization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      */
67 67
     protected function makeProcess(string $classname): Processor
68 68
     {
69
-        if (! is_subclass_of($classname, Processor::class)) {
69
+        if ( ! is_subclass_of($classname, Processor::class)) {
70 70
             throw new NoProcessInstanceException($classname);
71 71
         }
72 72
 
Please login to merge, or discard this patch.
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)
12 12
     {
13
-        if (! isset(static::$containers[$class])) {
13
+        if ( ! isset(static::$containers[$class])) {
14 14
             static::$containers[$class] = Container::getInstance()->make($class);
15 15
         }
16 16
 
Please login to merge, or discard this patch.