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 ( 7dc89d...637663 )
by butschster
13s
created
src/Display/Display.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -308,7 +308,7 @@
 block discarded – undo
308 308
     }
309 309
 
310 310
     /**
311
-     * @return \Illuminate\Foundation\Application|mixed
311
+     * @return RepositoryInterface
312 312
      * @throws \Exception
313 313
      */
314 314
     protected function makeRepository()
Please login to merge, or discard this patch.
src/Display/DisplayTree.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     }
290 290
 
291 291
     /**
292
-     * @param \Illuminate\Database\Eloquent\Builder|Builder $query
292
+     * @param \Illuminate\Database\Eloquent\Builder $query
293 293
      */
294 294
     protected function modifyQuery(\Illuminate\Database\Eloquent\Builder $query)
295 295
     {
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @return \Illuminate\Foundation\Application|mixed
302
+     * @return TreeRepositoryInterface
303 303
      * @throws \Exception
304 304
      */
305 305
     protected function makeRepository()
Please login to merge, or discard this patch.
src/Display/Extension/Columns.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @param string|\Illuminate\View\View $view
148
+     * @param string $view
149 149
      *
150 150
      * @return $this
151 151
      */
Please login to merge, or discard this patch.
src/Model/ModelConfigurationManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -290,7 +290,7 @@
 block discarded – undo
290 290
     }
291 291
 
292 292
     /**
293
-     * @return null|string
293
+     * @return boolean
294 294
      */
295 295
     public function hasCustomControllerClass()
296 296
     {
Please login to merge, or discard this patch.
src/Navigation/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @return Closure
86
+     * @return \Closure
87 87
      */
88 88
     public function getAccessLogic()
89 89
     {
Please login to merge, or discard this patch.
src/Repository/BaseRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @return \string[]
63
+     * @return string[]
64 64
      */
65 65
     public function getWith()
66 66
     {
Please login to merge, or discard this patch.
src/Repository/TreeRepository.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      *
204 204
      * @param $id
205 205
      * @param $parentId
206
-     * @param $left
206
+     * @param integer $left
207 207
      * @param $right
208 208
      */
209 209
     protected function move($id, $parentId, $left, $right)
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
      * Call several methods and get first result.
301 301
      *
302 302
      * @param $instance
303
-     * @param $methods
303
+     * @param string[] $methods
304 304
      *
305 305
      * @return mixed
306 306
      * @throws Exception
@@ -320,9 +320,9 @@  discard block
 block discarded – undo
320 320
      *
321 321
      * @param $root
322 322
      * @param $parentId
323
-     * @param $left
323
+     * @param integer $left
324 324
      *
325
-     * @return mixed
325
+     * @return integer
326 326
      */
327 327
     protected function recursiveReorder($root, $parentId, $left)
328 328
     {
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
      * Recursive reoder simple tree type.
342 342
      *
343 343
      * @param $data
344
-     * @param $parentId
344
+     * @param string|null $parentId
345 345
      */
346 346
     protected function recursiveReorderSimple(array $data, $parentId)
347 347
     {
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
      * Get children for simple tree type structure.
364 364
      *
365 365
      * @param $collection
366
-     * @param $id
366
+     * @param string|null $id
367 367
      *
368 368
      * @return Collection
369 369
      */
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
 
386 386
     /**
387 387
      * Create simple tree type structure.
388
-     * @return static
388
+     * @return Collection
389 389
      */
390 390
     protected function createSimpleTree()
391 391
     {
Please login to merge, or discard this patch.
src/Traits/FormElements.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
     /**
215 215
      * @param $object
216 216
      *
217
-     * @return mixed
217
+     * @return Model
218 218
      */
219 219
     protected function getElementContainer($object)
220 220
     {
Please login to merge, or discard this patch.
src/Form/FormDefault.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      * @deprecated 4.5.0
214 214
      * @see getElements()
215 215
      *
216
-     * @return Collection[]
216
+     * @return Collection
217 217
      */
218 218
     public function getItems()
219 219
     {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
      *
302 302
      * @param ModelConfigurationInterface $modelConfiguration
303 303
      *
304
-     * @return bool
304
+     * @return null|boolean
305 305
      */
306 306
     public function saveForm(ModelConfigurationInterface $modelConfiguration)
307 307
     {
Please login to merge, or discard this patch.