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
Pull Request — master (#219)
by
unknown
06:47
created
src/Display/DisplayTable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -283,7 +283,7 @@
 block discarded – undo
283 283
     }
284 284
 
285 285
     /**
286
-     * @param \Illuminate\Database\Eloquent\Builder|Builder $query
286
+     * @param \Illuminate\Database\Eloquent\Builder $query
287 287
      */
288 288
     protected function modifyQuery(\Illuminate\Database\Eloquent\Builder $query)
289 289
     {
Please login to merge, or discard this patch.
src/Display/Extension/Actions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param array|string $scopes
24 24
      *
25
-     * @return $this
25
+     * @return \SleepingOwl\Admin\Contracts\DisplayInterface
26 26
      */
27 27
     public function set($scopes)
28 28
     {
Please login to merge, or discard this patch.
src/Http/Controllers/AdminController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * @param string $editorId
82 82
      *
83
-     * @return bool
83
+     * @return boolean|null
84 84
      */
85 85
     public function loadEditor($editorId)
86 86
     {
Please login to merge, or discard this patch.
src/Form/Element/DateTime.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return $this|NamedFormElement|mixed|null|string
46
+     * @return null|string
47 47
      */
48 48
     public function getValue()
49 49
     {
Please login to merge, or discard this patch.
src/Form/FormDefault.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     }
192 192
 
193 193
     /**
194
-     * @return Collection[]
194
+     * @return FormElementInterface[]
195 195
      */
196 196
     public function getItems()
197 197
     {
Please login to merge, or discard this patch.
src/Form/FormPanel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
     }
118 118
 
119 119
     /**
120
-     * @param       $place
120
+     * @param       string $place
121 121
      * @param array $items
122 122
      */
123 123
     protected function placeItemsTo($place, array $items)
Please login to merge, or discard this patch.
src/Model/ModelConfiguration.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     }
242 242
 
243 243
     /**
244
-     * @return string|\Symfony\Component\Translation\TranslatorInterface
244
+     * @return string|null
245 245
      */
246 246
     public function getCreateTitle()
247 247
     {
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
     }
266 266
 
267 267
     /**
268
-     * @return string|\Symfony\Component\Translation\TranslatorInterface
268
+     * @return string|null
269 269
      */
270 270
     public function getEditTitle()
271 271
     {
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
     }
592 592
 
593 593
     /**
594
-     * @param $id
594
+     * @param integer $id
595 595
      *
596 596
      * @return mixed|void
597 597
      */
@@ -628,7 +628,7 @@  discard block
 block discarded – undo
628 628
     }
629 629
 
630 630
     /**
631
-     * @param $id
631
+     * @param integer $id
632 632
      *
633 633
      * @return mixed
634 634
      */
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
     }
641 641
 
642 642
     /**
643
-     * @param $id
643
+     * @param integer $id
644 644
      *
645 645
      * @return bool|mixed
646 646
      */
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
     }
697 697
 
698 698
     /**
699
-     * @param string|int $id
699
+     * @param integer $id
700 700
      *
701 701
      * @return string
702 702
      */
@@ -818,7 +818,7 @@  discard block
 block discarded – undo
818 818
     }
819 819
 
820 820
     /**
821
-     * @return null|string
821
+     * @return boolean
822 822
      */
823 823
     public function hasCustomControllerClass()
824 824
     {
Please login to merge, or discard this patch.