| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ApiClient extends ApiAbstract |
||
| 13 | { |
||
| 14 | public const ENTITY_SINGULAR = 'apiClient'; |
||
| 15 | public const ENTITY_PLURAL = 'apiClients'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * ApiClient constructor. |
||
| 19 | * |
||
| 20 | * @param LoggerInterface $logger |
||
| 21 | * @param RepoService $repoService |
||
| 22 | * @param FoundRows $foundRows |
||
| 23 | * @param string $problemBaseUrl |
||
| 24 | */ |
||
| 25 | public function __construct( |
||
| 34 |