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 (#345)
by
unknown
01:54
created
src/DataObjects/WorkflowDefinition.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
      *
479 479
      * @param $member
480 480
      * @param $target
481
-     * @return Boolean
481
+     * @return boolean|null
482 482
      */
483 483
     public function canWorkflowPublish($member, $target)
484 484
     {
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
      *
490 490
      * @param Member $member
491 491
      * @param array $context
492
-     * @return bool
492
+     * @return boolean|string
493 493
      */
494 494
     public function canCreate($member = null, $context = array())
495 495
     {
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
     /**
506 506
      *
507 507
      * @param Member $member
508
-     * @return boolean
508
+     * @return boolean|null
509 509
      */
510 510
     public function canView($member = null)
511 511
     {
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
     /**
516 516
      *
517 517
      * @param Member $member
518
-     * @return boolean
518
+     * @return boolean|string
519 519
      */
520 520
     public function canEdit($member = null)
521 521
     {
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
     /**
526 526
      *
527 527
      * @param Member $member
528
-     * @return boolean
528
+     * @return boolean|string
529 529
      * @see {@link $this->onBeforeDelete()}
530 530
      */
531 531
     public function canDelete($member = null)
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
      * Checks whether the passed user is able to view this ModelAdmin
554 554
      *
555 555
      * @param Member $member
556
-     * @return bool
556
+     * @return boolean|null
557 557
      */
558 558
     protected function userHasAccess($member)
559 559
     {
Please login to merge, or discard this patch.