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 ( c183ba...801d3d )
by Igor
09:46
created
examples/AddressBook_V5/GetAddressClusters.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
     $res = $ab->getAddressClusters($options);
29 29
     print_r($res);
30 30
 } catch (ApiError $e) {
31
-    echo $e->getCode() . PHP_EOL;
32
-    echo $e->getMessage() . PHP_EOL;
31
+    echo $e->getCode().PHP_EOL;
32
+    echo $e->getMessage().PHP_EOL;
33 33
 }
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/AssignedTo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function __construct(?array $params = null)
37 37
     {
38
-        if ($params !== null) {
38
+        if ($params!==null) {
39 39
             $this->fillFromArray($params);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/ResponseClustering.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@
 block discarded – undo
28 28
 
29 29
     public function __construct(?array $params = null)
30 30
     {
31
-        if ($params !== null) {
31
+        if ($params!==null) {
32 32
             foreach ($this as $key => $value) {
33 33
                 if (isset($params[$key])) {
34
-                    if ($key === 'clusters') {
34
+                    if ($key==='clusters') {
35 35
                         $this->{$key} = array();
36 36
                         foreach ($params[$key] as $clst_key => $clst_value) {
37 37
                             if (is_array($clst_value)) {
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/ResponseAddress.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -265,10 +265,10 @@  discard block
 block discarded – undo
265 265
 
266 266
     public function __construct(?array $params = null)
267 267
     {
268
-        if ($params !== null) {
268
+        if ($params!==null) {
269 269
             foreach ($this as $key => $value) {
270 270
                 if (isset($params[$key])) {
271
-                    if ($key === 'schedule') {
271
+                    if ($key==='schedule') {
272 272
                         $this->{$key} = array();
273 273
                         foreach ($params[$key] as $si_key => $si_value) {
274 274
                             if (is_array($si_value)) {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
                                 array_push($this->{$key}, $si_value);
278 278
                             }
279 279
                         }
280
-                    } elseif ($key === 'assigned_to') {
280
+                    } elseif ($key==='assigned_to') {
281 281
                         if (is_array($params[$key])) {
282 282
                             $this->{$key} = new AssignedTo($params[$key]);
283 283
                         } elseif (is_object($params[$key]) && $params[$key] instanceof AssignedTo) {
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/ResponseCluster.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@
 block discarded – undo
28 28
 
29 29
     public function __construct(?array $params = null)
30 30
     {
31
-        if ($params !== null) {
31
+        if ($params!==null) {
32 32
             foreach ($this as $key => $value) {
33 33
                 if (isset($params[$key])) {
34
-                    if ($key === 'cluster') {
34
+                    if ($key==='cluster') {
35 35
                         if (is_array($params[$key])) {
36 36
                             $this->{$key} = new Cluster($params[$key]);
37 37
                         } elseif (is_object($params[$key]) && $params[$key] instanceof Cluster) {
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/Cluster.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function __construct(?array $params = null)
37 37
     {
38
-        if ($params !== null) {
38
+        if ($params!==null) {
39 39
             $this->fillFromArray($params);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/ScheduleItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function __construct(?array $params = null)
37 37
     {
38
-        if ($params !== null) {
38
+        if ($params!==null) {
39 39
             $this->fillFromArray($params);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/Address.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
             && isset($params_or_address_1['address_stop_type'])
34 34
         ) {
35 35
             parent::__construct($params_or_address_1);
36
-        } elseif (is_string($params_or_address_1) && $params_or_address_1 != ""
36
+        } elseif (is_string($params_or_address_1) && $params_or_address_1!=""
37 37
             && !is_null($cached_lat) && !is_null($cached_lng) && !is_null($address_stop_type)
38 38
         ) {
39 39
             $this->address_1 = $params_or_address_1;
Please login to merge, or discard this patch.
src/Route4Me/V5/AddressBook/StatusChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function __construct(?array $params = null)
37 37
     {
38
-        if ($params !== null) {
38
+        if ($params!==null) {
39 39
             $this->fillFromArray($params);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.