mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
21 lines
380 B
PHP
21 lines
380 B
PHP
<?php
|
|
|
|
namespace Chill\MainBundle\Controller;
|
|
|
|
use Chill\MainBundle\CRUD\Controller\CRUDController;
|
|
use Chill\MainBundle\Entity\Country;
|
|
use Chill\MainBundle\Pagination\PaginatorFactory;
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
class AdminCountryCRUDController extends CRUDController
|
|
{
|
|
|
|
function __construct(PaginatorFactory $paginator)
|
|
{
|
|
$this->paginatorFactory = $paginator;
|
|
}
|
|
}
|