| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 58.81% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | abstract class AbstractRepository extends EntityRepository |
||
| 17 | { |
||
| 18 | use \Ecodev\Felix\Repository\Traits\Repository; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Return native SQL query to get all ID of object owned by anybody from the family |
||
| 22 | */ |
||
| 23 | 18 | protected function getAllIdsForFamilyQuery(User $user): string |
|
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Return native SQL query to get all ID of objects own by anybody |
||
| 42 | */ |
||
| 43 | protected function getAllIdsForAnyOwner(): string |
||
| 54 |