| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class UserGroup extends ApiAbstract |
||
| 14 | { |
||
| 15 | const ENTITY_SINGULAR = 'userGroup'; |
||
| 16 | const ENTITY_PLURAL = 'userGroups'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * UserGroup constructor. |
||
| 20 | * |
||
| 21 | * @param LoggerInterface $logger |
||
| 22 | * @param RepoService $repoService |
||
| 23 | */ |
||
| 24 | public function __construct(LoggerInterface $logger, RepoService $repoService) |
||
| 25 | { |
||
| 26 | parent::__construct($logger, $repoService); |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function getSharedData(): array |
||
| 41 | } |
||
| 42 | } |
||
| 43 |