@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * @author : Korotkov Danila <[email protected]> |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | */ |
| 30 | 30 | public static function getInstances(string $instance): self |
| 31 | 31 | { |
| 32 | - if (!array_key_exists($instance, self::$instances)){ |
|
| 32 | + if (!array_key_exists($instance, self::$instances)) { |
|
| 33 | 33 | self::$instances[$instance] = new self; |
| 34 | 34 | } |
| 35 | 35 | |