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.
Completed
Push — master ( ee0bb8...55d99f )
by
unknown
12:02
created
src/Form/Element/MultiSelect.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
         array $values
185 185
     ) {
186 186
         foreach ($values as $i => $value) {
187
-            if (! array_key_exists($value, $this->getOptions()) and $this->isTaggable()) {
187
+            if (!array_key_exists($value, $this->getOptions()) and $this->isTaggable()) {
188 188
                 $model = clone $this->getModelForOptions();
189 189
                 $model->{$this->getDisplay()} = $value;
190 190
                 $model->save();
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         $items = $relation->get();
212 212
 
213 213
         foreach ($items as $item) {
214
-            if (! in_array($item->getKey(), $values)) {
214
+            if (!in_array($item->getKey(), $values)) {
215 215
                 if ($this->isDeleteRelatedItem()) {
216 216
                     $item->delete();
217 217
                 } else {
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
             $item = $model->find($value);
237 237
 
238 238
             if (is_null($item)) {
239
-                if (! $this->isTaggable()) {
239
+                if (!$this->isTaggable()) {
240 240
                     continue;
241 241
                 }
242 242
 
Please login to merge, or discard this patch.
src/Form/Buttons/Delete.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@
 block discarded – undo
36 36
      */
37 37
     public function canShow()
38 38
     {
39
-        if (is_null($this->getModel()->getKey()) || ! $this->show) {
39
+        if (is_null($this->getModel()->getKey()) || !$this->show) {
40 40
             return false;
41 41
         }
42 42
 
43
-        $this->show = ! $this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
43
+        $this->show = !$this->isTrashed() && $this->getModelConfiguration()->isDeletable($this->getModel());
44 44
         parent::canShow();
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Form/Buttons/Destroy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function canShow()
38 38
     {
39
-        if (is_null($this->getModel()->getKey()) || ! $this->show) {
39
+        if (is_null($this->getModel()->getKey()) || !$this->show) {
40 40
             return false;
41 41
         }
42 42
 
Please login to merge, or discard this patch.
src/Form/Buttons/Restore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function canShow()
38 38
     {
39
-        if (is_null($this->getModel()->getKey()) || ! $this->show) {
39
+        if (is_null($this->getModel()->getKey()) || !$this->show) {
40 40
             return false;
41 41
         }
42 42
 
Please login to merge, or discard this patch.