Passed
Push — master ( 1deb14...1f5a3a )
by Petr
03:17
created
php-src/Storage/AuthorizationCodes/AuthorizationCode.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
     public function __construct(
24 24
         private readonly string $authorizationCode,
25 25
         private readonly DateTime $expires,
26
-        private readonly string|int $clientId,
27
-        private readonly string|int|null $userId,
26
+        private readonly string | int $clientId,
27
+        private readonly string | int | null $userId,
28 28
         private readonly array $scope,
29 29
     )
30 30
     {
@@ -35,12 +35,12 @@  discard block
 block discarded – undo
35 35
         return $this->authorizationCode;
36 36
     }
37 37
 
38
-    public function getClientId(): string|int
38
+    public function getClientId(): string | int
39 39
     {
40 40
         return $this->clientId;
41 41
     }
42 42
 
43
-    public function getUserId(): string|int|null
43
+    public function getUserId(): string | int | null
44 44
     {
45 45
         return $this->userId;
46 46
     }
Please login to merge, or discard this patch.