@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | /** |
565 | 565 | * Sends a hit to GA. The hit will contain in the payload all the parameters added before. |
566 | 566 | * |
567 | - * @param $methodName |
|
567 | + * @param string $methodName |
|
568 | 568 | * @return AnalyticsResponseInterface |
569 | 569 | * @throws Exception\InvalidPayloadDataException |
570 | 570 | */ |
@@ -647,8 +647,8 @@ discard block |
||
647 | 647 | /** |
648 | 648 | * Sets a parameter action to the value specified by the method call. |
649 | 649 | * |
650 | - * @param $parameter |
|
651 | - * @param $action |
|
650 | + * @param string $parameter |
|
651 | + * @param string $action |
|
652 | 652 | * @return $this |
653 | 653 | */ |
654 | 654 | protected function setParameterActionTo($parameter, $action) |
@@ -669,8 +669,8 @@ discard block |
||
669 | 669 | /** |
670 | 670 | * Gets a contant from a class dynamically. |
671 | 671 | * |
672 | - * @param $constant |
|
673 | - * @param $exceptionMsg |
|
672 | + * @param string $constant |
|
673 | + * @param string $exceptionMsg |
|
674 | 674 | * @return mixed |
675 | 675 | * @throws \BadMethodCallException |
676 | 676 | */ |
@@ -686,7 +686,7 @@ discard block |
||
686 | 686 | /** |
687 | 687 | * Sets the value for a parameter. |
688 | 688 | * |
689 | - * @param $methodName |
|
689 | + * @param string $methodName |
|
690 | 690 | * @param array $methodArguments |
691 | 691 | * @return $this |
692 | 692 | * @throws \InvalidArgumentException |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | * |
721 | 721 | * @SuppressWarnings(PHPMD.LongVariable) |
722 | 722 | * |
723 | - * @param $methodName |
|
723 | + * @param string $methodName |
|
724 | 724 | * @param array $methodArguments |
725 | 725 | * @return $this |
726 | 726 | * @throws \InvalidArgumentException |
@@ -762,7 +762,7 @@ discard block |
||
762 | 762 | * |
763 | 763 | * @SuppressWarnings(PHPMD.LongVariable) |
764 | 764 | * |
765 | - * @param $methodName |
|
765 | + * @param string $methodName |
|
766 | 766 | * @param array $methodArguments |
767 | 767 | * @return string |
768 | 768 | * @throws \InvalidArgumentException |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | /** |
826 | 826 | * Gets the fully qualified name for a parameter. |
827 | 827 | * |
828 | - * @param $parameterClass |
|
828 | + * @param string $parameterClass |
|
829 | 829 | * @param $methodName |
830 | 830 | * @return string |
831 | 831 | * @throws \BadMethodCallException |