File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Knp \Component \Pager \Pagination ;
4
4
5
- abstract class AbstractPagination implements PaginationInterface
5
+ use Countable , Iterator , ArrayAccess ;
6
+
7
+ abstract class AbstractPagination implements PaginationInterface, Countable, Iterator, ArrayAccess
6
8
{
7
9
protected $ currentPageNumber ;
8
10
protected $ numItemsPerPage ;
Original file line number Diff line number Diff line change 2
2
3
3
namespace Knp \Component \Pager \Pagination ;
4
4
5
- use Countable , Iterator , ArrayAccess ;
6
-
7
5
/**
8
6
* Pagination interface strictly defines
9
7
* the methods - paginator will use to populate the
10
8
* pagination data
11
9
*/
12
- interface PaginationInterface extends Countable, Iterator, ArrayAccess
10
+ interface PaginationInterface
13
11
{
14
12
/**
15
13
* @param integer $pageNumber
You can’t perform that action at this time.
0 commit comments