| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class UserGroup extends ApiAbstract |
||
| 13 | { |
||
| 14 | public const ENTITY_SINGULAR = 'userGroup'; |
||
| 15 | public const ENTITY_PLURAL = 'userGroups'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * UserGroup constructor. |
||
| 19 | * |
||
| 20 | * @param LoggerInterface $logger |
||
| 21 | * @param RepoService $repoService |
||
| 22 | * @param FoundRows $foundRows |
||
| 23 | * @param string $problemBaseUrl |
||
| 24 | */ |
||
| 25 | public function __construct( |
||
| 26 | LoggerInterface $logger, |
||
| 27 | RepoService $repoService, |
||
| 28 | FoundRows $foundRows, |
||
| 29 | string $problemBaseUrl |
||
| 30 | ) { |
||
| 31 | parent::__construct($logger, $repoService, $foundRows, $problemBaseUrl); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function getSharedData(): array |
||
| 46 | } |
||
| 47 | } |
||
| 48 |