@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * This file is part of the Enum package. |
5 | 5 | * For the full copyright information please view the LICENCE file that was |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @return self |
65 | 65 | * @throws InvalidEnumValueException - Thrown if the value passed is not an enum constant |
66 | 66 | */ |
67 | - final public static function __callStatic(string $method, array $args = []): self |
|
67 | + final public static function __callStatic(string $method, array $args = [ ]): self |
|
68 | 68 | { |
69 | 69 | try { |
70 | 70 | return new static(strtoupper($method)); |