@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function get($id) |
69 | 69 | { |
70 | - if (! Validator::stringType()->validate($id)) { |
|
70 | + if (!Validator::stringType()->validate($id)) { |
|
71 | 71 | throw new ContainerException('Identifier is not a string'); |
72 | 72 | } |
73 | 73 | return $this->resolveInstance($id); |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | throw new ContainerException(sprintf('Class "%s" does not exists', $class)); |
125 | 125 | } |
126 | 126 | |
127 | - if (! $reflection->isInstantiable()) { |
|
127 | + if (!$reflection->isInstantiable()) { |
|
128 | 128 | throw new ContainerException(sprintf('Class "%s" is not instantiable', $class)); |
129 | 129 | } |
130 | 130 | return $this->buildInstance($reflection); |