Skip to content

Commit

Permalink
fix phpdoc in AFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
voda committed Apr 21, 2019
1 parent 638b909 commit 39d9687
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Filters/AFilter.php
Expand Up @@ -18,10 +18,10 @@ abstract class AFilter {
/**
* Includes a function to parse gettext phrases from
*
* @param $functionName string
* @param $singular int
* @param $plural int|null
* @param $context int|null
* @param string $functionName
* @param int $singular
* @param int|null $plural
* @param int|null $context
* @return self
*/
public function addFunction(string $functionName, int $singular = 1, int $plural = null, int $context = null): self {
Expand Down Expand Up @@ -50,7 +50,7 @@ public function addFunction(string $functionName, int $singular = 1, int $plural
/**
* Excludes a function from the function list
*
* @param $functionName
* @param string $functionName
* @return self
*/
public function removeFunction(string $functionName): self {
Expand Down

0 comments on commit 39d9687

Please sign in to comment.