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 ( 55318a...b54c2e )
by Oleg
02:27
created
examples/Tracking/AssetTracking.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
     
4
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Enum\DeviceType;
Please login to merge, or discard this patch.
examples/Optimizations/hybridOptimization.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
 
97 97
 /* Get Hybrid Optimization */
98 98
 
99
-$ep = time()+604800;
99
+$ep = time() + 604800;
100 100
 $sched_date = date("Y-m-d", $ep);
101 101
 
102 102
 $hybridParams = array(
Please login to merge, or discard this patch.
examples/AvoidanceZones/AddAvoidanceZone.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root = realpath(dirname(__FILE__) . '/../../');
5
-require $root . '/vendor/autoload.php';
4
+$root = realpath(dirname(__FILE__).'/../../');
5
+require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
8 8
 use Route4Me\Enum\TerritoryTypes;
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 );
22 22
 
23 23
 $AvoidanceZoneParameters = AvoidanceZone::fromArray(array(
24
-    "territory_name"   => "Test Circle Avoidance Zone ".strval(rand(10000,99999)),
24
+    "territory_name"   => "Test Circle Avoidance Zone ".strval(rand(10000, 99999)),
25 25
     "territory_color"  => "ff7700",
26 26
     "territory"        => $territoryParams
27 27
 ));
Please login to merge, or discard this patch.
examples/AvoidanceZones/CreateRectZone.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root = realpath(dirname(__FILE__) . '/../../');
5
-require $root . '/vendor/autoload.php';
4
+$root = realpath(dirname(__FILE__).'/../../');
5
+require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
8 8
 use Route4Me\Enum\TerritoryTypes;
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 );
22 22
 
23 23
 $AvoidanceZoneParameters = AvoidanceZone::fromArray(array(
24
-    "territory_name"   => "Test Rectangular Avoidance Zone ".strval(rand(10000,99999)),
24
+    "territory_name"   => "Test Rectangular Avoidance Zone ".strval(rand(10000, 99999)),
25 25
     "territory_color"  => "ff7700",
26 26
     "territory"        => $territoryParams
27 27
 ));
Please login to merge, or discard this patch.
examples/AvoidanceZones/CreatePolyZone.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root = realpath(dirname(__FILE__) . '/../../');
5
-require $root . '/vendor/autoload.php';
4
+$root = realpath(dirname(__FILE__).'/../../');
5
+require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
8 8
 use Route4Me\Enum\TerritoryTypes;
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 );
29 29
 
30 30
 $AvoidanceZoneParameters = AvoidanceZone::fromArray(array(
31
-    "territory_name"   => "Test Poligonian Avoidance Zone ".strval(rand(10000,99999)),
31
+    "territory_name"   => "Test Poligonian Avoidance Zone ".strval(rand(10000, 99999)),
32 32
     "territory_color"  => "ff7700",
33 33
     "territory"        => $territoryParams
34 34
 ));
Please login to merge, or discard this patch.
examples/AvoidanceZones/GetAvoidanceZone.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root = realpath(dirname(__FILE__) . '/../../');
5
-require $root . '/vendor/autoload.php';
4
+$root = realpath(dirname(__FILE__).'/../../');
5
+require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
8 8
 use Route4Me\Enum\TerritoryTypes;
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 );
24 24
 
25 25
 $AvoisanceZoneParameters = AvoidanceZone::fromArray(array(
26
-    "territory_name"   => "Test Territory ".strval(rand(10000,99999)),
26
+    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27 27
     "territory_color"  => "ff7700",
28 28
     "territory"        => $territoryParams
29 29
 ));
Please login to merge, or discard this patch.
examples/AvoidanceZones/UpdateAvoidanceZone.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root = realpath(dirname(__FILE__) . '/../../');
5
-require $root . '/vendor/autoload.php';
4
+$root = realpath(dirname(__FILE__).'/../../');
5
+require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
8 8
 use Route4Me\Enum\TerritoryTypes;
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 );
24 24
 
25 25
 $AvoidanceZoneParameters = AvoidanceZone::fromArray(array(
26
-    "territory_name"   => "Test Territory ".strval(rand(10000,99999)),
26
+    "territory_name"   => "Test Territory ".strval(rand(10000, 99999)),
27 27
     "territory_color"  => "ff7700",
28 28
     "territory"        => $territoryParams
29 29
 ));
Please login to merge, or discard this patch.
examples/Vehicles/GetVehicleByID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
Please login to merge, or discard this patch.
examples/Vehicles/GetVehicles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Route4Me;
3 3
 
4
-$root=realpath(dirname(__FILE__).'/../../');
4
+$root = realpath(dirname(__FILE__).'/../../');
5 5
 require $root.'/vendor/autoload.php';
6 6
 
7 7
 use Route4Me\Route4Me;
Please login to merge, or discard this patch.