@@ -8,7 +8,6 @@ |
||
8 | 8 | use Innmind\Reflection\Instanciator\ReflectionInstanciator; |
9 | 9 | use Innmind\Immutable\Collection; |
10 | 10 | use Innmind\Immutable\CollectionInterface; |
11 | -use Innmind\Immutable\TypedCollectionInterface; |
|
12 | 11 | |
13 | 12 | class ReflectionClass |
14 | 13 | { |
@@ -161,7 +161,7 @@ |
||
161 | 161 | { |
162 | 162 | return $this |
163 | 163 | ->extractionStrategies |
164 | - ->get($this->object,$property) |
|
165 | - ->extract($this->object,$property); |
|
164 | + ->get($this->object, $property) |
|
165 | + ->extract($this->object, $property); |
|
166 | 166 | } |
167 | 167 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | private function setCachedStrategy(string $class, string $key, $strategy) |
35 | 35 | { |
36 | - self::$strategyCache[$class.'::'.$key] = $strategy; |
|
36 | + self::$strategyCache[$class . '::' . $key] = $strategy; |
|
37 | 37 | |
38 | 38 | return $this; |
39 | 39 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | private function getCacheKey(string $class, string $key) |
50 | 50 | { |
51 | - return $class.'::'.$key; |
|
51 | + return $class . '::' . $key; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | } |