Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | abstract class AbstractRepository extends EntityRepository |
||
19 | { |
||
20 | use \Ecodev\Felix\Repository\Traits\Repository; |
||
21 | |||
22 | /** |
||
23 | * Return native SQL query to get all ID of object owned by anybody from the family. |
||
24 | */ |
||
25 | 18 | protected function getAllIdsForFamilyQuery(User $user): string |
|
42 |