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 ( a33860...8fdd51 )
by Jorge
7s
created
src/Analytics.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
     /**
415 415
      * Sends a hit to GA. The hit will contain in the payload all the parameters added before.
416 416
      *
417
-     * @param $methodName
417
+     * @param string $methodName
418 418
      * @return AnalyticsResponse
419 419
      * @throws Exception\InvalidPayloadDataException
420 420
      */
@@ -483,8 +483,8 @@  discard block
 block discarded – undo
483 483
     /**
484 484
      * Sets a parameter action to the value specified by the method call.
485 485
      *
486
-     * @param $parameter
487
-     * @param $action
486
+     * @param string $parameter
487
+     * @param string $action
488 488
      * @return $this
489 489
      */
490 490
     private function setParameterActionTo($parameter, $action)
@@ -505,8 +505,8 @@  discard block
 block discarded – undo
505 505
     /**
506 506
      * Gets a contant from a class dynamically.
507 507
      *
508
-     * @param $constant
509
-     * @param $exceptionMsg
508
+     * @param string $constant
509
+     * @param string $exceptionMsg
510 510
      * @return mixed
511 511
      * @throws \BadMethodCallException
512 512
      */
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
     /**
523 523
      * Sets the value for a parameter.
524 524
      *
525
-     * @param $methodName
525
+     * @param string $methodName
526 526
      * @param array $methodArguments
527 527
      * @return $this
528 528
      * @throws \InvalidArgumentException
@@ -556,7 +556,7 @@  discard block
 block discarded – undo
556 556
      *
557 557
      * @SuppressWarnings(PHPMD.LongVariable)
558 558
      *
559
-     * @param $methodName
559
+     * @param string $methodName
560 560
      * @param array $methodArguments
561 561
      * @return $this
562 562
      * @throws \InvalidArgumentException
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
     /**
597 597
      * Gets the value for a parameter.
598 598
      *
599
-     * @param $methodName
599
+     * @param string $methodName
600 600
      * @param array $methodArguments
601 601
      * @return $this
602 602
      * @throws \InvalidArgumentException
@@ -658,7 +658,7 @@  discard block
 block discarded – undo
658 658
     /**
659 659
      * Gets the fully qualified name for a parameter.
660 660
      *
661
-     * @param $parameterClass
661
+     * @param string $parameterClass
662 662
      * @param $methodName
663 663
      * @return string
664 664
      * @throws \BadMethodCallException
Please login to merge, or discard this patch.