Total Complexity | 4 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 92.31% |
Changes | 0 |
1 | <?php |
||
8 | final class BaseProvider implements DataProviderInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $entityClassName; |
||
14 | |||
15 | 6 | public function __construct(string $entityClassName) |
|
18 | 6 | } |
|
19 | |||
20 | /** |
||
21 | * @return array |
||
22 | */ |
||
23 | 6 | public function provide(): array |
|
30 | ]; |
||
31 | } |
||
32 | |||
33 | 6 | private function getModuleName(string $entityName): string |
|
42 |