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 ( 48e703...083c8a )
by Toby
07:17
created
app/Support/RequiredSettingRetrieval.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function getSettings(Group $group, array $settings)
36 36
     {
37
-        if(Cache::has($this->getCacheKey($group))) {
37
+        if (Cache::has($this->getCacheKey($group))) {
38 38
             return Cache::get($this->getCacheKey($group));
39 39
         }
40 40
         foreach ($settings as $setting) {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
     protected function getCacheKey(Group $group)
50 50
     {
51
-        return RequiredSettingRetrieval::class . '.' . $group->id();
51
+        return RequiredSettingRetrieval::class.'.'.$group->id();
52 52
     }
53 53
     
54 54
     protected function groupIsForSetting(Group $group, array $setting): bool
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             return false;
58 58
         }
59 59
         $logic = $this->logicRepository->getById($setting['logic_id']);
60
-        $groups = collect($this->logicAudience->groupAudience($logic))->map(function (Group $group) {
60
+        $groups = collect($this->logicAudience->groupAudience($logic))->map(function(Group $group) {
61 61
             return $group->id();
62 62
         });
63 63
         return $groups->contains($group->id());
Please login to merge, or discard this patch.