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 ( 49fd2d...63bb85 )
by Oleg
02:40 queued 42s
created
examples/Geocoding/forward_geocode.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 Route4Me::setApiKey('11111111111111111111111111111111');
12 12
 
13 13
 $geocodingParameters = array(
14
-    'strExportFormat'  => 'json',
15
-    'addresses'        => 'Los20%Angeles20%International20%Airport,20%CA'
14
+	'strExportFormat'  => 'json',
15
+	'addresses'        => 'Los20%Angeles20%International20%Airport,20%CA'
16 16
 );
17 17
 
18 18
 $fGeoCoding = new Geocoding();
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 $fgResult = $fGeoCoding->forwardGeocoding($geocodingParameters);
21 21
 
22 22
 if ($geocodingParameters['strExportFormat']=='json') {
23
-    Route4Me::simplePrint($fgResult);
23
+	Route4Me::simplePrint($fgResult);
24 24
 } else {
25
-    Route4Me::simplePrint($fgResult['destination']);
25
+	Route4Me::simplePrint($fgResult['destination']);
26 26
 }
Please login to merge, or discard this patch.
examples/Geocoding/get_street_adddress_single.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $gcParameters = (array)Geocoding::fromArray(array(
16
-    "pk" => 4
16
+	"pk" => 4
17 17
 ));
18 18
 
19 19
 $geocoding = new Geocoding();
Please login to merge, or discard this patch.
examples/Geocoding/batch_geocode_addresses.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@  discard block
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $addressList = array(
16
-    "Los Angeles International Airport, CA",
17
-    "n512,Florida Pl,Barberton,OH,44203",
18
-    "3495,Purdue St,Cuyahoga Falls,OH,44221"
16
+	"Los Angeles International Airport, CA",
17
+	"n512,Florida Pl,Barberton,OH,44203",
18
+	"3495,Purdue St,Cuyahoga Falls,OH,44221"
19 19
 );
20 20
 
21 21
 $addressesString = implode('\n', $addressList);
22 22
 
23 23
 $geocodingParameters = array(
24
-    'strExportFormat'  => 'json',
25
-    'addresses'        => $addressesString
24
+	'strExportFormat'  => 'json',
25
+	'addresses'        => $addressesString
26 26
 );
27 27
 
28 28
 $fGeoCoding = new Geocoding();
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 $bgResults = $fGeoCoding->forwardGeocoding($geocodingParameters);
31 31
 
32 32
 if ($geocodingParameters['strExportFormat']=='json') {
33
-    foreach ($bgResults as $bgResult) {
34
-        Route4Me::simplePrint($bgResult);
35
-        echo "<br>";
36
-    }
33
+	foreach ($bgResults as $bgResult) {
34
+		Route4Me::simplePrint($bgResult);
35
+		echo "<br>";
36
+	}
37 37
 } else {
38
-    foreach ($bgResults['destination'] as $bgResult) {
39
-        Route4Me::simplePrint($bgResult);
40
-        echo "<br>";
41
-    }
38
+	foreach ($bgResults['destination'] as $bgResult) {
39
+		Route4Me::simplePrint($bgResult);
40
+		echo "<br>";
41
+	}
42 42
 }
Please login to merge, or discard this patch.
examples/Notes/AddCustomNoteType.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,12 +12,12 @@
 block discarded – undo
12 12
 
13 13
 // Create a custom note type
14 14
 $noteParameters=array(
15
-    "type"   => 'To Do',
16
-    "values" => array(
17
-                  'Pass a package',
18
-                  'Pickup package',
19
-                  'Do a service'
20
-                )
15
+	"type"   => 'To Do',
16
+	"values" => array(
17
+				  'Pass a package',
18
+				  'Pickup package',
19
+				  'Do a service'
20
+				)
21 21
 );
22 22
 
23 23
 $address = new Address();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 Route4Me::setApiKey('11111111111111111111111111111111');
12 12
 
13 13
 // Create a custom note type
14
-$noteParameters=array(
14
+$noteParameters = array(
15 15
     "type"   => 'To Do',
16 16
     "values" => array(
17 17
                   'Pass a package',
Please login to merge, or discard this patch.
examples/Members/get_single_user.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
 // Get a specified user with details
35 35
 $param = array (
36
-    "member_id" => $randomUserID
36
+	"member_id" => $randomUserID
37 37
 );
38 38
 
39 39
 $response = $member->getUser($param);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 echo "Random user ID -> $randomUserID <br><br>";
33 33
 
34 34
 // Get a specified user with details
35
-$param = array (
35
+$param = array(
36 36
     "member_id" => $randomUserID
37 37
 );
38 38
 
Please login to merge, or discard this patch.
examples/Members/member_create.php 2 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@
 block discarded – undo
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16 16
 $params = Member::fromArray(array (
17
-    "HIDE_ROUTED_ADDRESSES" => "FALSE",
18
-    "member_phone"          => "571-259-5939",
19
-    "member_zipcode"        => "22102",
20
-    "route_count"           => null,
21
-    "member_email"          => "[email protected]",
22
-    "HIDE_VISITED_ADDRESSES"=> "FALSE",
23
-    "READONLY_USER"         => "FALSE",
24
-    "member_type"           => "SUB_ACCOUNT_DRIVER",
25
-    "date_of_birth"         => "1994-10-01",
26
-    "member_first_name"     => "Clay",
27
-    "member_password"       => "123456",
28
-    "HIDE_NONFUTURE_ROUTES" => "FALSE",
29
-    "member_last_name"      => "Abraham",
30
-    "SHOW_ALL_VEHICLES"     => "FALSE",
31
-    "SHOW_ALL_DRIVERS"      => "FALSE"
17
+	"HIDE_ROUTED_ADDRESSES" => "FALSE",
18
+	"member_phone"          => "571-259-5939",
19
+	"member_zipcode"        => "22102",
20
+	"route_count"           => null,
21
+	"member_email"          => "[email protected]",
22
+	"HIDE_VISITED_ADDRESSES"=> "FALSE",
23
+	"READONLY_USER"         => "FALSE",
24
+	"member_type"           => "SUB_ACCOUNT_DRIVER",
25
+	"date_of_birth"         => "1994-10-01",
26
+	"member_first_name"     => "Clay",
27
+	"member_password"       => "123456",
28
+	"HIDE_NONFUTURE_ROUTES" => "FALSE",
29
+	"member_last_name"      => "Abraham",
30
+	"SHOW_ALL_VEHICLES"     => "FALSE",
31
+	"SHOW_ALL_DRIVERS"      => "FALSE"
32 32
 ));
33 33
 
34 34
 $member = new Member();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 // This example is not available for demo API key
14 14
 Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 
16
-$params = Member::fromArray(array (
16
+$params = Member::fromArray(array(
17 17
     "HIDE_ROUTED_ADDRESSES" => "FALSE",
18 18
     "member_phone"          => "571-259-5939",
19 19
     "member_zipcode"        => "22102",
Please login to merge, or discard this patch.
examples/Members/member_authenticate.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $Parameters = Member::fromArray(array(
16
-    'strEmail'    => '[email protected]',
17
-    'strPassword' => 'dddddddd',
18
-    'format'      => 'json',
16
+	'strEmail'    => '[email protected]',
17
+	'strPassword' => 'dddddddd',
18
+	'format'      => 'json',
19 19
 ));
20 20
 
21 21
 $member = new Member();
Please login to merge, or discard this patch.
examples/Members/get_users.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
 $response = $member->getUsers();
18 18
 
19 19
 foreach ($response['results'] as $key => $member) {
20
-    Route4Me::simplePrint($member);
21
-    echo "<br>";
20
+	Route4Me::simplePrint($member);
21
+	echo "<br>";
22 22
 }
Please login to merge, or discard this patch.
examples/Members/new_account_registration.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 Route4Me::setApiKey('11111111111111111111111111111111');
14 14
 
15 15
 $registrParameters = Member::fromArray(array(
16
-    'strEmail'      => '[email protected]',
17
-    'strPassword_1' => 'ooo111111',
18
-    'strPassword_2' => 'ooo111111',
19
-    'strFirstName'  => 'Driver',
20
-    'strLastName'   => 'Driverson',
21
-    'format'        => 'json',
22
-    'strIndustry'   => 'Gifting',
23
-    'chkTerms'      => 1,
24
-    'device_type'   => 'web',
25
-    'plan'          => 'free'
16
+	'strEmail'      => '[email protected]',
17
+	'strPassword_1' => 'ooo111111',
18
+	'strPassword_2' => 'ooo111111',
19
+	'strFirstName'  => 'Driver',
20
+	'strLastName'   => 'Driverson',
21
+	'format'        => 'json',
22
+	'strIndustry'   => 'Gifting',
23
+	'chkTerms'      => 1,
24
+	'device_type'   => 'web',
25
+	'plan'          => 'free'
26 26
 ));
27 27
 
28 28
 $member = new Member();
Please login to merge, or discard this patch.