mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-02-14 12:25:30 +00:00
delegates the acl for fetching person documents to an ACLAwareREpository
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Chill\DocStoreBundle\Repository;
|
||||
|
||||
use Chill\PersonBundle\Entity\Person;
|
||||
|
||||
interface PersonDocumentACLAwareRepositoryInterface
|
||||
{
|
||||
public function findByPerson(Person $person, array $orderBy = [], int $limit = 20, int $offset = 0): array;
|
||||
|
||||
public function countByPerson(Person $person): int;
|
||||
}
|
||||
Reference in New Issue
Block a user