| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | final class GroupMembersStateProvider implements ProviderInterface |
||
| 16 | { |
||
| 17 | private EntityManagerInterface $entityManager; |
||
| 18 | |||
| 19 | public function __construct(EntityManagerInterface $entityManager) |
||
| 20 | { |
||
| 21 | $this->entityManager = $entityManager; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function supports(Operation $operation, array $uriVariables = [], array $context = []): bool |
||
| 27 | } |
||
| 28 | |||
| 29 | public function provide(Operation $operation, array $uriVariables = [], array $context = []): iterable |
||
| 42 |