Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class DataProviderConfig extends AbstractConfig |
||
11 | { |
||
12 | public const DATA_PROVIDER_PATHS = 'data.provider.paths'; |
||
13 | |||
14 | public const DATA_PROVIDER_GENERATED_PATH = 'data.provider.generated.path'; |
||
15 | |||
16 | public const DATA_PROVIDER_NAMESPACE = 'data.provider.namespace'; |
||
17 | |||
18 | public const FILE_PATTERN = 'file.pattern'; |
||
19 | |||
20 | /** |
||
21 | * @return array |
||
22 | */ |
||
23 | 3 | public function getPaths(): array |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 3 | public function getGeneratedPath(): string |
|
32 | { |
||
33 | 3 | return $this->get(self::DATA_PROVIDER_GENERATED_PATH); |
|
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | 3 | public function getDataProviderNamespace(): string |
|
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | 3 | public function getFilePattern(): string |
|
50 | } |
||
51 | } |