/
home
/
obinna
/
html
/
restaurants
/
vendor
/
knplabs
/
knp-components
/
src
/
Knp
/
Component
/
Pager
/
Event
/
Upload File
HOME
<?php namespace Knp\Component\Pager\Event; use Knp\Component\Pager\Pagination\PaginationInterface; use Symfony\Contracts\EventDispatcher\Event; /** * Specific Event class for paginator */ final class AfterEvent extends Event { private $pagination; public function __construct(PaginationInterface $paginationView) { $this->pagination = $paginationView; } public function getPaginationView(): PaginationInterface { return $this->pagination; } }