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 ( 0e4df4...84c959 )
by Igor
01:44 queued 12s
created
examples/TeamManagement/UpdateSubUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,5 +27,5 @@
 block discarded – undo
27 27
     $res = $tm->update($userId, $params);
28 28
     print_r($res);
29 29
 } catch (ApiError $e) {
30
-    echo $e->getMessage() . PHP_EOL;
30
+    echo $e->getMessage().PHP_EOL;
31 31
 }
Please login to merge, or discard this patch.
examples/TeamManagement/BulkInsertSubUsers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     if (is_array($res_members) && isset($res_members['results'])) {
28 28
         foreach ($res_members['results'] as $key => $value) {
29
-            if ($value['OWNER_MEMBER_ID'] == 0) {
29
+            if ($value['OWNER_MEMBER_ID']==0) {
30 30
                 $owner_member_id = $value['member_id'];
31 31
                 break;
32 32
             }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     $tm = new TeamManagement();
64 64
     $res = $tm->bulkInsert($params, $options);
65 65
     //print_r($res);
66
-    echo "Insert two sub-users." . PHP_EOL;
66
+    echo "Insert two sub-users.".PHP_EOL;
67 67
 } catch (Exception | ApiError $e) {
68
-    echo $e->getMessage() . PHP_EOL;
68
+    echo $e->getMessage().PHP_EOL;
69 69
 }
Please login to merge, or discard this patch.
examples/TeamManagement/DeleteSubUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,5 +22,5 @@
 block discarded – undo
22 22
     $res = $tm->delete($userId);
23 23
     print_r($res);
24 24
 } catch (ApiError $e) {
25
-    echo 'Cannot delete user with ID: ' . $userId . PHP_EOL;
25
+    echo 'Cannot delete user with ID: '.$userId.PHP_EOL;
26 26
 }
Please login to merge, or discard this patch.