| 1 | <?php |
||
| 18 | class IdeHelperConfig extends InjectableConfig |
||
| 19 | { |
||
| 20 | const CONFIG = 'modules/ide-helper'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $config = [ |
||
| 26 | 'writers' => [], |
||
| 27 | 'locators' => [], |
||
| 28 | 'scopes' => [], |
||
| 29 | ]; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return array |
||
| 33 | */ |
||
| 34 | public function getWriters(): array |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public function getLocators(): array |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | public function getScopes(): array |
||
| 54 | } |
||
| 55 |