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 ( 088b7b...cf7f69 )
by Jared
02:00
created
src/JCFirebase.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
     public function getPathURI($path = '',$print = ''){
41 41
         //remove last slash from firebaseURI
42 42
         $template = '/';
43
-	    $this->firebaseURI = rtrim($this->firebaseURI,$template);
44
-	    $path = rtrim($path,$template);
45
-	    $path = ltrim($path,$template);
43
+        $this->firebaseURI = rtrim($this->firebaseURI,$template);
44
+        $path = rtrim($path,$template);
45
+        $path = ltrim($path,$template);
46 46
 
47 47
         //check https
48 48
         if(strpos($this->firebaseURI, 'http://') !== false){
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         }
56 56
 
57 57
         if(strpos($this->firebaseDefaultPath,"/") !== 0){
58
-        	throw new \Exception("firebase default path must contain /");
58
+            throw new \Exception("firebase default path must contain /");
59 59
         }
60 60
 
61 61
         $pathURI = $this->firebaseURI.$this->firebaseDefaultPath.$path.".json";
Please login to merge, or discard this patch.