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 Failed
Push — master ( 0778dc...600421 )
by Rob
03:31
created
src/SafeUrls.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@  discard block
 block discarded – undo
35 35
     public function __construct()
36 36
     {
37 37
         // Initialise the list of urls as an empty array.
38
-        $this->urls = [];
38
+        $this->urls = [ ];
39 39
 
40 40
         // Initialise the list of urls as an empty array.
41
-        $this->results = [];
41
+        $this->results = [ ];
42 42
     }
43 43
 
44 44
     /**
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     public function isDangerous(string $url): bool
136 136
     {
137 137
         $data = json_decode((string) $this->results);
138
-        $matches = empty($data->response) ? null : $data->response['matches'];
138
+        $matches = empty($data->response) ? null : $data->response[ 'matches' ];
139 139
         if (empty($matches)) {
140 140
             return false;
141 141
         }
Please login to merge, or discard this patch.