From c9bfcb4280f3670af3713bdb86171f3197847bca Mon Sep 17 00:00:00 2001 From: Johan Date: Wed, 10 Feb 2021 14:20:42 +0700 Subject: [PATCH] re-phrase docblocks --- src/UtmParameters.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/UtmParameters.php b/src/UtmParameters.php index a25d210..ccf2d94 100644 --- a/src/UtmParameters.php +++ b/src/UtmParameters.php @@ -220,7 +220,7 @@ public function forget($response) } /** - * Get the source parameter + * Get the source parameter value */ public function getSource() : string { @@ -228,7 +228,7 @@ public function getSource() : string } /** - * Get the medium parameter + * Get the medium parameter value */ public function getMedium() : ?string { @@ -236,7 +236,7 @@ public function getMedium() : ?string } /** - * Get the campaign parameter + * Get the campaign parameter value */ public function getCampaign() : ?string { @@ -244,7 +244,7 @@ public function getCampaign() : ?string } /** - * Get the term parameter + * Get the term parameter value */ public function getTerm() : ?string { @@ -252,7 +252,7 @@ public function getTerm() : ?string } /** - * Get the content parameter + * Get the content parameter value */ public function getContent() : ?string { @@ -260,7 +260,7 @@ public function getContent() : ?string } /** - * Get all parameters as an array + * Get all parameters as a key => value array * * @return array */