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 — develop ( df61b8...d9ddd1 )
by Toby
06:11
created
app/Support/LogicRoleRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     private function logicGroupId()
92 92
     {
93 93
         $id = settings('logic_group', null);
94
-        if($id === null) {
94
+        if ($id === null) {
95 95
             return null;
96 96
         }
97 97
         return (int) $id;
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     private function filter(Collection $roles)
113 113
     {
114
-        if($this->hasLogicGroup()) {
114
+        if ($this->hasLogicGroup()) {
115 115
             return $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) {
116 116
                 return $this->isInLogicGroup($role);
117 117
             })->values();
Please login to merge, or discard this patch.
app/Support/LogicUserGroupRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     private function logicGroupId()
67 67
     {
68 68
         $id = settings('logic_group', null);
69
-        if($id === null) {
69
+        if ($id === null) {
70 70
             return null;
71 71
         }
72 72
         return (int) $id;
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     private function filter(Collection $roles)
88 88
     {
89
-        if($this->hasLogicGroup()) {
89
+        if ($this->hasLogicGroup()) {
90 90
             return $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) {
91 91
                 return $this->isInLogicGroup($role);
92 92
             })->values();
Please login to merge, or discard this patch.
app/Rules/PositionCanBeUsed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         } catch (\Exception $e) {
43 43
             return false;
44 44
         }
45
-        if(in_array($value, $settings['only_one_role'])) {
45
+        if (in_array($value, $settings['only_one_role'])) {
46 46
             $roles = $this->roleRepository->allThroughGroup($this->group());
47 47
             
48 48
             return $roles->filter(function(\BristolSU\ControlDB\Contracts\Models\Role $role) use ($value) {
Please login to merge, or discard this patch.