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 (886517)
by butschster
06:42
created
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.