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.
Passed
Branch dev (b42eb9)
by Liuta
03:30
created
includes/class-xcloner.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -168,14 +168,14 @@
 block discarded – undo
168 168
 		return $this->xcloner_encryption;
169 169
 	}*/
170 170
 
171
-    public function __call($property, $args) {
171
+	public function __call($property, $args) {
172 172
 
173
-        $property = str_replace("get_", "", $property);
173
+		$property = str_replace("get_", "", $property);
174 174
 
175
-        if(property_exists($this, $property)){
176
-            return $this->$property;
177
-        }
178
-    }
175
+		if(property_exists($this, $property)){
176
+			return $this->$property;
177
+		}
178
+	}
179 179
 
180 180
 	public function check_dependencies() {
181 181
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 
173 173
         $property = str_replace("get_", "", $property);
174 174
 
175
-        if(property_exists($this, $property)){
175
+        if (property_exists($this, $property)) {
176 176
             return $this->$property;
177 177
         }
178 178
     }
Please login to merge, or discard this patch.