@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | public static function create(): self |
| 33 | 33 | { |
| 34 | 34 | /** @psalm-var array<string, string> $index */ |
| 35 | - $index = require __DIR__ . '/../config/ranges.php'; |
|
| 35 | + $index = require __DIR__.'/../config/ranges.php'; |
|
| 36 | 36 | |
| 37 | 37 | return new self(__DIR__, $index); |
| 38 | 38 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | if (!is_string($file)) { |
| 69 | 69 | throw new Exception\InvalidPropertyConfigException($propertyName, $file); |
| 70 | 70 | } |
| 71 | - $fileName = $this->path . $file; |
|
| 71 | + $fileName = $this->path.$file; |
|
| 72 | 72 | error_clear_last(); |
| 73 | 73 | /** |
| 74 | 74 | * @noinspection PhpIncludeInspection |