| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class DynamicModulesConfig extends AbstractConfig |
||
| 11 | { |
||
| 12 | public const COMMAND_PROVIDER_FILTER = 'command.provider.filter'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function getCommandProviderFilter(): string |
||
| 18 | { |
||
| 19 | return $this->get(self::COMMAND_PROVIDER_FILTER, '*CommandProvider.php'); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getApplicationPath(): string |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function getNamespaces(): array |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |