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 ( 40d4ab...8e6f7b )
by Oleg
02:45 queued 42s
created
examples/MemberConfiguration/create_new_config_key.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 // Set the api key in the Route4me class
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15
-$params = Member::fromArray(array (
15
+$params = Member::fromArray(array(
16 16
     "config_key"   => "destination_icon_uri",
17 17
     "config_value" => "value"
18 18
 ));
Please login to merge, or discard this patch.
examples/MemberConfiguration/get_account_config_key_data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 // Set the api key in the Route4me class
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15
-$params = Member::fromArray(array ( ));
15
+$params = Member::fromArray(array( ));
16 16
 
17 17
 $member = new Member();
18 18
 
Please login to merge, or discard this patch.
examples/MemberConfiguration/update_config_key.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 $member = new Member();
19 19
 
20 20
 // Get a random member config key
21
-$randomParams = Member::fromArray(array ( ));
21
+$randomParams = Member::fromArray(array( ));
22 22
 
23 23
 $response = $member->getMemberConfigData($randomParams);
24 24
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 echo "Random key -> $randomKey,  random value -> $randomValue <br><br>";
34 34
 
35 35
 // Update existing configuration key data
36
-$params = Member::fromArray(array (
36
+$params = Member::fromArray(array(
37 37
     "config_key"   => $randomKey,
38 38
     "config_value" => $randomValue." Updated"
39 39
 ));
Please login to merge, or discard this patch.
examples/MemberConfiguration/get_specific_account_config_key_data.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 $member = new Member();
19 19
 
20 20
 // Get a random member config key
21
-$randomParams = Member::fromArray(array ( ));
21
+$randomParams = Member::fromArray(array( ));
22 22
 
23 23
 $response = $member->getMemberConfigData($randomParams);
24 24
 
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 // Get a specified single configuration key data
32 32
 echo "randomKey -> $randomKey <br><br>";
33 33
 
34
-$params = Member::fromArray(array (
34
+$params = Member::fromArray(array(
35 35
     "config_key"  => $randomKey
36 36
 ));
37 37
 
Please login to merge, or discard this patch.
examples/Routes/UpdateRouteDestination.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 // Update the route destination
31 31
 $route->parameters = new \stdClass();
32 32
 
33
-$route->addresses = array( Address::fromArray(array(
33
+$route->addresses = array(Address::fromArray(array(
34 34
     "alias"                   =>  "new address alias",
35 35
     "first_name"              =>  "Edi",
36 36
     "last_name"               =>  "Jacobson",
Please login to merge, or discard this patch.
examples/Routes/DeleteRoutes.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/Routes/MergeRoutes.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/Routes/UpdateRouteParameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     "member_id"           => $randomRoute->member_id,
34 34
     "optimize"            => "Distance",
35 35
     "route_max_duration"  => "82400",
36
-    "route_name"          => "updated " . date('m-d-Y')
36
+    "route_name"          => "updated ".date('m-d-Y')
37 37
 );
38 38
 
39 39
 $route->httpheaders = 'Content-type: application/json';
Please login to merge, or discard this patch.
examples/Territories/GetTerritories.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
 $territory = new Territory();
14 14
 
15
-$queryparameters = array (
15
+$queryparameters = array(
16 16
     "offset" => 0,
17 17
     "limit"  => 20
18 18
 );
Please login to merge, or discard this patch.