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.
Test Failed
Push — master ( 6c805f...bce16d )
by Igor
09:12 queued 14s
created
src/Route4Me/V5/Vehicles/DataTypes/VehicleResponse.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,9 @@
 block discarded – undo
22 22
         $vehResp = new self();
23 23
 
24 24
         foreach ($params as $key => $value) {
25
-            if (is_null(Common::getValue($params, $key))) continue;
25
+            if (is_null(Common::getValue($params, $key))) {
26
+            	continue;
27
+            }
26 28
             if (property_exists($vehResp, $key)) {
27 29
                 $vehResp->$key = $value;
28 30
             }
Please login to merge, or discard this patch.
src/Route4Me/V5/Vehicles/DataTypes/VehicleProfilesResponse.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,9 @@
 block discarded – undo
77 77
         $profResp = new self();
78 78
 
79 79
         foreach ($params as $key => $value) {
80
-            if (is_null(Common::getValue($params, $key))) continue;
80
+            if (is_null(Common::getValue($params, $key))) {
81
+            	continue;
82
+            }
81 83
             if (property_exists($profResp, $key)) {
82 84
                 $profResp->$key = $value;
83 85
             }
Please login to merge, or discard this patch.
src/Route4Me/V5/Vehicles/DataTypes/VehicleProfile.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,9 @@
 block discarded – undo
179 179
         $vehicleProfile = new self();
180 180
 
181 181
         foreach ($params as $key => $value) {
182
-            if (is_null(Common::getValue($params, $key))) continue;
182
+            if (is_null(Common::getValue($params, $key))) {
183
+            	continue;
184
+            }
183 185
             if (property_exists($vehicleProfile, $key)) {
184 186
                 $vehicleProfile->$key = $value;
185 187
             }
Please login to merge, or discard this patch.
src/Route4Me/V5/Vehicles/DataTypes/VehicleOrderResponse.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,9 @@
 block discarded – undo
27 27
         $ordParams = new self();
28 28
 
29 29
         foreach ($params as $key => $value) {
30
-            if (is_null(Common::getValue($params, $key))) continue;
30
+            if (is_null(Common::getValue($params, $key))) {
31
+            	continue;
32
+            }
31 33
             if (property_exists($ordParams, $key)) {
32 34
                 $ordParams->$key = $value;
33 35
             }
Please login to merge, or discard this patch.
src/Route4Me/V5/Vehicles/DataTypes/VehicleTemporary.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,9 @@
 block discarded – undo
42 42
         $vehicleTemp = new self();
43 43
 
44 44
         foreach ($params as $key => $value) {
45
-            if (is_null(Common::getValue($params, $key))) continue;
45
+            if (is_null(Common::getValue($params, $key))) {
46
+            	continue;
47
+            }
46 48
             if (property_exists($vehicleTemp, $key)) {
47 49
                 $vehicleTemp->$key = $value;
48 50
             }
Please login to merge, or discard this patch.
src/Route4Me/V5/Vehicles/DataTypes/Vehicle.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,9 @@
 block discarded – undo
189 189
         $vehicle = new self();
190 190
 
191 191
         foreach ($params as $key => $value) {
192
-            if (is_null(Common::getValue($params, $key))) continue;
192
+            if (is_null(Common::getValue($params, $key))) {
193
+            	continue;
194
+            }
193 195
             if (property_exists($vehicle, $key)) {
194 196
                 $vehicle->$key = $value;
195 197
             }
Please login to merge, or discard this patch.
src/Route4Me/Vehicles/VehiclesResponseV4.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,9 @@
 block discarded – undo
83 83
         $vehiclesResponse = new self();
84 84
 
85 85
         foreach ($params as $key => $value) {
86
-            if (is_null(Common::getValue($params, $key))) continue;
86
+            if (is_null(Common::getValue($params, $key))) {
87
+            	continue;
88
+            }
87 89
             if (property_exists($vehiclesResponse, $key)) {
88 90
                 $vehiclesResponse->$key = $value;
89 91
             }
Please login to merge, or discard this patch.
src/Route4Me/Vehicles/VehicleCreateResponseV4.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,9 @@
 block discarded – undo
137 137
         $vehicleCreateResponse = new self();
138 138
 
139 139
         foreach ($params as $key => $value) {
140
-            if (is_null(Common::getValue($params, $key))) continue;
140
+            if (is_null(Common::getValue($params, $key))) {
141
+            	continue;
142
+            }
141 143
             if (property_exists($vehicleCreateResponse, $key)) {
142 144
                 $vehicleCreateResponse->$key = $value;
143 145
             }
Please login to merge, or discard this patch.
examples/AdvancedConstraints/TagsDifferentTimeWindowsFleets.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,5 +103,7 @@
 block discarded – undo
103 103
     echo "\tDistance: " . $route->trip_distance . PHP_EOL;
104 104
     echo "\tAddresses:" . PHP_EOL;
105 105
 
106
-    foreach($route->addresses as $address) echo "\t\t" . $address->address . PHP_EOL;
107
-}
106
+    foreach($route->addresses as $address) {
107
+    	echo "\t\t" . $address->address . PHP_EOL;
108
+    }
109
+    }
Please login to merge, or discard this patch.