This commit is contained in:
2022-03-21 15:22:40 +01:00
parent 704392a729
commit 11d57094e8
3 changed files with 6 additions and 6 deletions

View File

@@ -16,6 +16,8 @@ use Chill\PersonBundle\Entity\Person;
interface AccompanyingPeriodACLAwareRepositoryInterface
{
public function countByUserOpenedAccompanyingPeriod(?User $user): int;
public function findByPerson(
Person $person,
string $role,
@@ -25,6 +27,4 @@ interface AccompanyingPeriodACLAwareRepositoryInterface
): array;
public function findByUserOpenedAccompanyingPeriod(?User $user, array $orderBy = [], int $limit = 0, int $offset = 50): array;
public function countByUserOpenedAccompanyingPeriod(?User $user): int;
}