@@ -4,14 +4,14 @@ |
||
| 4 | 4 | |
| 5 | 5 | abstract class CacheEnum |
| 6 | 6 | { |
| 7 | - public function __construct(protected int|string $value) {} |
|
| 7 | + public function __construct(protected int | string $value) {} |
|
| 8 | 8 | |
| 9 | 9 | public static function __callStatic(string $name, array $arguments): self |
| 10 | 10 | { |
| 11 | 11 | return new static($name); |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - public function getValue(): int|string |
|
| 14 | + public function getValue(): int | string |
|
| 15 | 15 | { |
| 16 | 16 | return $this->value; |
| 17 | 17 | } |