We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9e8df46 + 9911f20 commit 464e1eeCopy full SHA for 464e1ee
src/Knp/Component/Pager/Pagination/AbstractPagination.php
@@ -2,7 +2,9 @@
2
3
namespace Knp\Component\Pager\Pagination;
4
5
-abstract class AbstractPagination implements PaginationInterface
+use Countable, Iterator, ArrayAccess;
6
+
7
+abstract class AbstractPagination implements PaginationInterface, Countable, Iterator, ArrayAccess
8
{
9
protected $currentPageNumber;
10
protected $numItemsPerPage;
src/Knp/Component/Pager/Pagination/PaginationInterface.php
@@ -2,14 +2,12 @@
-use Countable, Iterator, ArrayAccess;
-
/**
* Pagination interface strictly defines
* the methods - paginator will use to populate the
* pagination data
11
*/
12
-interface PaginationInterface extends Countable, Iterator, ArrayAccess
+interface PaginationInterface
13
14
15
* @param integer $pageNumber
0 commit comments