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 Setup Failed
Push — master ( c98937...5c0e77 )
by Gabriel
14:33
created
Types/Behaviours/CustomElements/AbstractCustomElementTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 
43 43
     protected function getFormValueRecord($model)
44 44
     {
45
-        $values = FindValuesByFormConsumer::for($this->getItem()->getFormBuilder(), $model)->handle();
45
+        $values = FindValuesByFormConsumer::for ($this->getItem()->getFormBuilder(), $model)->handle();
46 46
 
47
-        return FindOrCreateFormValueFromList::for($values)->fieldValue($this->getItem());
47
+        return FindOrCreateFormValueFromList::for ($values)->fieldValue($this->getItem());
48 48
     }
49 49
 
50 50
     /**
@@ -102,6 +102,6 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function generateFormName(): string
104 104
     {
105
-        return $this->getName().'-'.sha1($this->getItem()->id ?? '');
105
+        return $this->getName() . '-' . sha1($this->getItem()->id ?? '');
106 106
     }
107 107
 }
Please login to merge, or discard this patch.