%PDF- %PDF-
Direktori : /home/emtnaeewxm/www/vendor/knplabs/knp-components/src/Knp/Component/Pager/Event/ |
Current File : /home/emtnaeewxm/www/vendor/knplabs/knp-components/src/Knp/Component/Pager/Event/AfterEvent.php |
<?php namespace Knp\Component\Pager\Event; use Symfony\Component\EventDispatcher\Event; use Knp\Component\Pager\Pagination\PaginationInterface; /** * Specific Event class for paginator */ class AfterEvent extends Event { private $pagination; public function __construct(PaginationInterface $paginationView) { $this->pagination = $paginationView; } public function getPaginationView() { return $this->pagination; } }