@@ -15,14 +15,14 @@ |
||
15 | 15 | /** |
16 | 16 | * The token that produced this error. |
17 | 17 | */ |
18 | - public Token|null $token; |
|
18 | + public Token | null $token; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @param string $msg the message of this exception |
22 | 22 | * @param Token|null $token the token that produced this exception |
23 | 23 | * @param int $code the code of this error |
24 | 24 | */ |
25 | - public function __construct(string $msg = '', Token|null $token = null, int $code = 0) |
|
25 | + public function __construct(string $msg = '', Token | null $token = null, int $code = 0) |
|
26 | 26 | { |
27 | 27 | parent::__construct($msg, $code); |
28 | 28 |