Skip to content

Commit

Permalink
re-phrase docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
johanrosenson committed Feb 10, 2021
1 parent 67c50f9 commit c9bfcb4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/UtmParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,47 +220,47 @@ public function forget($response)
}

/**
* Get the source parameter
* Get the source parameter value
*/
public function getSource() : string
{
return $this->source;
}

/**
* Get the medium parameter
* Get the medium parameter value
*/
public function getMedium() : ?string
{
return $this->medium;
}

/**
* Get the campaign parameter
* Get the campaign parameter value
*/
public function getCampaign() : ?string
{
return $this->campaign;
}

/**
* Get the term parameter
* Get the term parameter value
*/
public function getTerm() : ?string
{
return $this->term;
}

/**
* Get the content parameter
* Get the content parameter value
*/
public function getContent() : ?string
{
return $this->content;
}

/**
* Get all parameters as an array
* Get all parameters as a key => value array
*
* @return array<string,string|null>
*/
Expand Down

0 comments on commit c9bfcb4

Please sign in to comment.