add post follow
This commit is contained in:
parent
bf901ad799
commit
6607b03e3b
20 changed files with 621 additions and 2 deletions
15
src/Repository/Blog/PostFollowRepositoryQuery.php
Normal file
15
src/Repository/Blog/PostFollowRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Repository\Blog;
|
||||
|
||||
use App\Core\Repository\RepositoryQuery;
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
use App\Repository\Blog\PostFollowRepository as Repository;
|
||||
|
||||
class PostFollowRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(Repository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 'p', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue