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.
Completed
Push — master ( c44eea...b75a1f )
by Jared
02:40
created
src/JCFirebase.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     protected function refreshToken()
63 63
     {
64
-        $this->requestHeader['Authorization'] = 'Bearer ' . $this->auth->getAccessToken();
64
+        $this->requestHeader['Authorization'] = 'Bearer '.$this->auth->getAccessToken();
65 65
     }
66 66
 
67 67
     protected function mergeRequestPathURI($path = '', $options = array(), $reqType = JCFirebaseOption::REQ_TYPE_GET)
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             throw new \Exception("firebase default path must contain /");
98 98
         }
99 99
 
100
-        $pathURI = $this->firebaseURI . $this->firebaseDefaultPath . $path . ".json";
100
+        $pathURI = $this->firebaseURI.$this->firebaseDefaultPath.$path.".json";
101 101
 
102 102
         //set query data
103 103
         $queryData = array();
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             $queryData[JCFirebaseOption::OPTION_PRINT] = $print;
106 106
         }
107 107
         if (!empty($queryData)) {
108
-            $pathURI = $pathURI . '?' . http_build_query($queryData);
108
+            $pathURI = $pathURI.'?'.http_build_query($queryData);
109 109
         }
110 110
 
111 111
         return $pathURI;
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
         $this->refreshToken();
132 132
 
133 133
         return Requests::get($this->getPathURI(
134
-                $path) . '?' . http_build_query(array(JCFirebaseOption::OPTION_SHALLOW => JCFirebaseOption::SHALLOW_TRUE)),
134
+                $path).'?'.http_build_query(array(JCFirebaseOption::OPTION_SHALLOW => JCFirebaseOption::SHALLOW_TRUE)),
135 135
             $this->requestHeader,
136 136
             $this->mergeRequestOptions($options)
137 137
         );
Please login to merge, or discard this patch.