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