<?php

namespace Lc\SovBundle\Repository\Setting;

use Knp\Component\Pager\PaginatorInterface;
use Lc\SovBundle\Repository\AbstractRepositoryQuery;

class SiteSettingRepositoryQuery extends AbstractRepositoryQuery implements SiteSettingRepositoryQueryInterface
{
    public function __construct(SiteSettingRepository $repository, PaginatorInterface $paginator)
    {
        parent::__construct($repository, 'siteSetting', $paginator);
    }
}