Skip to content

Commit

Permalink
Update filterInteger docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Oct 30, 2015
1 parent f351776 commit 8516512
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/AbstractCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,8 @@ public function newReader($open_mode = 'r+')
* Validate the submitted integer
*
* @param int $int
* @param int $min
* @param string $message
* @param int $minValue
* @param string $errorMessage
*
* @throws InvalidArgumentException If the value is invalid
*
Expand Down
2 changes: 1 addition & 1 deletion src/Config/Controls.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public function setFlags($flags)
/**
* @inheritdoc
*/
abstract protected function filterInteger($int, $min, $message);
abstract protected function filterInteger($int, $minValue, $errorMessage);

/**
* Returns the file Flags
Expand Down
2 changes: 1 addition & 1 deletion src/Modifier/QueryFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function setOffset($offset = 0)
/**
* @inheritdoc
*/
abstract protected function filterInteger($int, $min, $message);
abstract protected function filterInteger($int, $minValue, $errorMessage);

/**
* Set LimitIterator Count
Expand Down

0 comments on commit 8516512

Please sign in to comment.