Passed
Pull Request — master (#525)
by
unknown
03:12
created
src/Exceptions/ParserException.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
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, int $code = 0)
25
+    public function __construct(string $msg, Token | null $token, int $code = 0)
26 26
     {
27 27
         parent::__construct($msg, $code);
28 28
 
Please login to merge, or discard this patch.