@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | try { |
| 235 | 235 | $reflection = new ReflectionClass($class); |
| 236 | 236 | } catch (ReflectionException $e) { |
| 237 | - throw new InvalidItemException('reflection issue with ' . $class); |
|
| 237 | + throw new InvalidItemException('reflection issue with '.$class); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | if (!$reflection->implementsInterface(IDeserializable::class)) { |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | * @return string |
| 355 | 355 | */ |
| 356 | 356 | private function getRef(string $key, string $ref): string { |
| 357 | - return $this->get($key . '.' . $ref, $this->ref); |
|
| 357 | + return $this->get($key.'.'.$ref, $this->ref); |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | 360 | /** |