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 ( e5b8eb...47d764 )
by Igor
01:54 queued 12s
created
examples/AddressBook_V5/UpdateAddressesByAreas.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,6 +42,6 @@
 block discarded – undo
42 42
     $res = $ab->updateAddressesByAreas($filter, $params);
43 43
     print_r($res);
44 44
 } catch (ApiError $e) {
45
-    echo $e->getCode() . PHP_EOL;
46
-    echo $e->getMessage() . PHP_EOL;
45
+    echo $e->getCode().PHP_EOL;
46
+    echo $e->getMessage().PHP_EOL;
47 47
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/AddMultipleAddresses.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,6 +51,6 @@
 block discarded – undo
51 51
     $res = $ab->addMultipleAddresses($arr);
52 52
     print_r($res);
53 53
 } catch (ApiError $e) {
54
-    echo $e->getCode() . PHP_EOL;
55
-    echo $e->getMessage() . PHP_EOL;
54
+    echo $e->getCode().PHP_EOL;
55
+    echo $e->getMessage().PHP_EOL;
56 56
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressesByBodyPayload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
     $res = $ab->getAddressesByBodyPayload($options);
51 51
     print_r($res);
52 52
 } catch (ApiError $e) {
53
-    echo $e->getCode() . PHP_EOL;
54
-    echo $e->getMessage() . PHP_EOL;
53
+    echo $e->getCode().PHP_EOL;
54
+    echo $e->getMessage().PHP_EOL;
55 55
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressesDepots.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     $res = $ab->getAddressesDepots();
22 22
     print_r($res);
23 23
 } catch (ApiError $e) {
24
-    echo $e->getCode() . PHP_EOL;
25
-    echo $e->getMessage() . PHP_EOL;
24
+    echo $e->getCode().PHP_EOL;
25
+    echo $e->getMessage().PHP_EOL;
26 26
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressesAsynchronousJobResult.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
     $res = $ab->getAddressesAsynchronousJobResult($jobId);
24 24
     print_r($res);
25 25
 } catch (ApiError $e) {
26
-    echo $e->getCode() . PHP_EOL;
27
-    echo $e->getMessage() . PHP_EOL;
26
+    echo $e->getCode().PHP_EOL;
27
+    echo $e->getMessage().PHP_EOL;
28 28
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressCustomFields.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     $res = $ab->getAddressCustomFields();
22 22
     print_r($res);
23 23
 } catch (ApiError $e) {
24
-    echo $e->getCode() . PHP_EOL;
25
-    echo $e->getMessage() . PHP_EOL;
24
+    echo $e->getCode().PHP_EOL;
25
+    echo $e->getMessage().PHP_EOL;
26 26
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/UpdateAddressById.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
     $res = $ab->updateAddressById($addressId, $params);
30 30
     print_r($res);
31 31
 } catch (ApiError $e) {
32
-    echo $e->getCode() . PHP_EOL;
33
-    echo $e->getMessage() . PHP_EOL;
32
+    echo $e->getCode().PHP_EOL;
33
+    echo $e->getMessage().PHP_EOL;
34 34
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressesAsynchronousJobStatus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
     $res = $ab->getAddressesAsynchronousJobStatus($jobId);
24 24
     print_r($res);
25 25
 } catch (ApiError $e) {
26
-    echo $e->getCode() . PHP_EOL;
27
-    echo $e->getMessage() . PHP_EOL;
26
+    echo $e->getCode().PHP_EOL;
27
+    echo $e->getMessage().PHP_EOL;
28 28
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/ExportAddressesByAreaIds.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
     $res = $ab->exportAddressesByAreaIds($territoryIds, $filename);
25 25
     print_r($res);
26 26
 } catch (ApiError $e) {
27
-    echo $e->getCode() . PHP_EOL;
28
-    echo $e->getMessage() . PHP_EOL;
27
+    echo $e->getCode().PHP_EOL;
28
+    echo $e->getMessage().PHP_EOL;
29 29
 }
Please login to merge, or discard this patch.