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
Push — master ( b54c2e...66b33a )
by Oleg
01:58
created
examples/Territories/GetTerritory.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 
19 19
 $territoryParams['type'] = TerritoryTypes::CIRCLE;
20 20
 $territoryParams['data'] = array(
21
-    "37.569752822786455,-77.47833251953125",
22
-    "5000"
21
+	"37.569752822786455,-77.47833251953125",
22
+	"5000"
23 23
 );
24 24
 
25 25
 $TerritoryParameters = Territory::fromArray(array(
26
-    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
-    "territory_color"  => "ff7700",
28
-    "territory"        => $territoryParams
26
+	"territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27
+	"territory_color"  => "ff7700",
28
+	"territory"        => $territoryParams
29 29
 ));
30 30
 
31 31
 $territory = new Territory();
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 echo "---------------------------------------------------------------<br><br>";
42 42
 
43 43
 $params = array(
44
-    "territory_id" => $territory_id
44
+	"territory_id" => $territory_id
45 45
 );
46 46
 
47 47
 $result1 = $territory->getTerritory($params);
Please login to merge, or discard this patch.
examples/Territories/AddTerritory.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@
 block discarded – undo
14 14
 
15 15
 $territoryParams['type'] = TerritoryTypes::CIRCLE;
16 16
 $territoryParams['data'] = array(
17
-    "37.569752822786455,-77.47833251953125",
18
-    "5000"
17
+	"37.569752822786455,-77.47833251953125",
18
+	"5000"
19 19
 );
20 20
 
21 21
 $TerritoryParameters = Territory::fromArray(array(
22
-    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
23
-    "territory_color"  => "ff7700",
24
-    "territory"        => $territoryParams
22
+	"territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
23
+	"territory_color"  => "ff7700",
24
+	"territory"        => $territoryParams
25 25
 ));
26 26
 
27 27
 $territory = new Territory();
Please login to merge, or discard this patch.