@@ -36,8 +36,8 @@ |
||
36 | 36 | $this->id = $id; |
37 | 37 | $this->fn = $fn; |
38 | 38 | |
39 | - if (! $this->fn instanceof Closure) { |
|
40 | - $this->fn = function ($instance, ContainerInterface $c) { |
|
39 | + if (!$this->fn instanceof Closure) { |
|
40 | + $this->fn = function($instance, ContainerInterface $c) { |
|
41 | 41 | return $instance; |
42 | 42 | }; |
43 | 43 | } |
@@ -67,7 +67,7 @@ |
||
67 | 67 | |
68 | 68 | public function getConcrete(ContainerInterface $container) |
69 | 69 | { |
70 | - if (! $this->classResolver instanceof ClassResolver) { |
|
70 | + if (!$this->classResolver instanceof ClassResolver) { |
|
71 | 71 | throw new ContainerException('No ClassResolver implementation has been set.'); |
72 | 72 | } |
73 | 73 |
@@ -64,7 +64,7 @@ |
||
64 | 64 | { |
65 | 65 | /** @var Inject|null $inject */ |
66 | 66 | $inject = $this->reflector->getFirstAttribute($subject, Inject::class); |
67 | - if (! $inject instanceof Inject) { |
|
67 | + if (!$inject instanceof Inject) { |
|
68 | 68 | return null; |
69 | 69 | } |
70 | 70 |