| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class GroupMembersDataProvider implements ProviderInterface |
||
| 13 | { |
||
| 14 | private EntityManagerInterface $entityManager; |
||
| 15 | |||
| 16 | public function __construct(EntityManagerInterface $entityManager) |
||
| 17 | { |
||
| 18 | $this->entityManager = $entityManager; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function supports(Operation $operation, array $uriVariables = [], array $context = []): bool |
||
| 24 | } |
||
| 25 | |||
| 26 | public function provide(Operation $operation, array $uriVariables = [], array $context = []): iterable |
||
| 39 |