diff --git a/src/Contract/PaginationInterface.php b/src/Contract/PaginationInterface.php index ae7eff1..8a03b24 100644 --- a/src/Contract/PaginationInterface.php +++ b/src/Contract/PaginationInterface.php @@ -26,7 +26,7 @@ public function getLimit(); * * @return $this */ - public function setLimit($limit); + public function limit($limit); /** * Get whether an offset is set @@ -50,5 +50,5 @@ public function getOffset(); * * @return $this */ - public function setOffset($offset); + public function offset($offset); }