GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Setup Failed
Push — master ( bcd190...0ba900 )
by Carlos
01:12
created
src/PhoneNumber.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class PhoneNumber implements Contracts\PhoneNumberInterface
24 24
 {
25
-    protected int|string $number;
25
+    protected int | string $number;
26 26
 
27 27
     protected ?int $IDDCode;
28 28
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * PhoneNumberInterface constructor.
35 35
      */
36
-    public function __construct(int|string $numberWithoutIDDCode, ?string $IDDCode = null)
36
+    public function __construct(int | string $numberWithoutIDDCode, ?string $IDDCode = null)
37 37
     {
38 38
         $this->phoneUtil = PhoneNumberUtil::getInstance();
39 39
         $numberStr = (string) $numberWithoutIDDCode;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * 18888888888.
93 93
      */
94
-    public function getNumber(): int|string
94
+    public function getNumber(): int | string
95 95
     {
96 96
         return $this->number;
97 97
     }
Please login to merge, or discard this patch.