@@ -414,7 +414,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |