@@ -66,7 +66,7 @@ |
||
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 |
@@ -10,7 +10,7 @@ |
||
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 |