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