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
Branch development (1144d9)
by butschster
09:48
created
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/Display/DisplayDatatablesAsync.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     }
164 164
 
165 165
     /**
166
-     * @param mixed $distinct
166
+     * @param string|null $distinct
167 167
      *
168 168
      * @return $this
169 169
      */
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     /**
207 207
      * Apply offset and limit to the query.
208 208
      *
209
-     * @param $query
209
+     * @param Builder $query
210 210
      */
211 211
     protected function applyOffset($query)
212 212
     {
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
     /**
268 268
      * Convert collection to the datatables structure.
269 269
      *
270
-     * @param array|Collection $collection
270
+     * @param Collection $collection
271 271
      * @param int $totalCount
272 272
      * @param int $filteredCount
273 273
      *
Please login to merge, or discard this patch.
src/Display/TableColumn.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     }
88 88
 
89 89
     /**
90
-     * @return int
90
+     * @return string
91 91
      */
92 92
     public function getWidth()
93 93
     {
Please login to merge, or discard this patch.
src/Widgets/WidgetsRegistry.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @param $widget
98
+     * @param string $widget
99 99
      *
100 100
      * @return \Closure
101 101
      */
Please login to merge, or discard this patch.
src/Display/DisplayTabbed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @return TabInterface[]|DisplayTabsCollection
68
+     * @return \SleepingOwl\Admin\Form\FormElementsCollection
69 69
      */
70 70
     public function getTabs()
71 71
     {
Please login to merge, or discard this patch.
src/Form/Element/Custom.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return $this|Custom|mixed
89
+     * @return string
90 90
      */
91 91
     public function render()
92 92
     {
Please login to merge, or discard this patch.
src/Http/Controllers/AdminController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
      *
306 306
      * @param Request $request
307 307
      *
308
-     * @return bool
308
+     * @return boolean|null
309 309
      *
310 310
      * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
311 311
      */
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
     }
411 411
 
412 412
     /**
413
-     * @param ModelConfigurationInterface|ModelConfiguration $model
413
+     * @param ModelConfigurationInterface $model
414 414
      * @param Request $request
415 415
      * @param int $id
416 416
      *
@@ -529,7 +529,7 @@  discard block
 block discarded – undo
529 529
     /**
530 530
      * @param Request $request
531 531
      *
532
-     * @return null|string
532
+     * @return string
533 533
      */
534 534
     protected function getBackUrl(Request $request)
535 535
     {
Please login to merge, or discard this patch.
src/Model/ModelConfigurationManager.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     }
328 328
 
329 329
     /**
330
-     * @return null|string
330
+     * @return boolean
331 331
      */
332 332
     public function hasCustomControllerClass()
333 333
     {
@@ -505,7 +505,6 @@  discard block
 block discarded – undo
505 505
      * @param string $event
506 506
      * @param bool $halt
507 507
      * @param Model|null $model
508
-     * @param array $args
509 508
      *
510 509
      * @return mixed
511 510
      */
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
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     protected $with = [];
30 30
 
31 31
     /**
32
-     * @param string|Model $class
32
+     * @param string $class
33 33
      *
34 34
      * @throws RepositoryException
35 35
      */
Please login to merge, or discard this patch.