Closed
Description
Refactor: Cut Redundant Dependency in order to use as Standalone.
When using Paginator class as Dependency, there is problem.
- A lot of method is defined, regardless of whether or not to use.
- json, filter, render, cache
- ScrollingStyle is static dependecy.
- it's not need when ScrollingStyle object is passed.
- eg.
$paginator->getPages(new Zend\Paginator\ScrollingStyle\All()))
- eg.
- it's not need when ScrollingStyle object is passed.
Above thing is a headache when to use standalone.
So I request refactoring this component.
Introduced below interface, trait, class.
- PaginatorInterface
- JsonSerializeTrait, RenderTrait, FilterTrait, CachedTrait
- SimplePaginator
- GlobalPaginator
.. And Paginator class can implements like below, without BC break.
class Paginator extends GlobalPaginator
{
use JsonSerializeTrait,
RenderTrait,
FilterTrait,
CachedTrait;
Only ScrollingStyleInterface implentation must be changed.
BEFORE public function getPages(Paginator $paginator, $pageRange = null);
AFTER public function getPages(PaginatorInterface $paginator, $pageRange = null);
Originally posted by @sasezaki at zendframework/zend-paginator#9