@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | protected function getFqcnFromAlias(string $namespaceAlias, string $simpleClassName) : string |
37 | 37 | { |
38 | - return __NAMESPACE__ . '\\' . $simpleClassName; |
|
38 | + return __NAMESPACE__.'\\'.$simpleClassName; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | protected function initialize() : void |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | protected function onNotFoundMetadata($className) |
69 | 69 | { |
70 | - if (! $this->fallbackCallback) { |
|
70 | + if (!$this->fallbackCallback) { |
|
71 | 71 | return null; |
72 | 72 | } |
73 | 73 |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | |
167 | 167 | private function getManagerFactory() |
168 | 168 | { |
169 | - return function (string $name) { |
|
169 | + return function(string $name) { |
|
170 | 170 | $mock = $this->createMock(ObjectManager::class); |
171 | 171 | |
172 | 172 | $driver = $this->createMock(MappingDriver::class); |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | |
213 | 213 | protected function getService(string $name) : object |
214 | 214 | { |
215 | - if (! isset($this->services[$name])) { |
|
215 | + if (!isset($this->services[$name])) { |
|
216 | 216 | $this->services[$name] = call_user_func($this->managerFactory, $name); |
217 | 217 | } |
218 | 218 |