Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ConfigAbstract extends ClassGenerator |
||
9 | { |
||
10 | protected function formExtends() |
||
11 | { |
||
12 | return 'carono\turbotext\ConfigAbstract'; |
||
13 | } |
||
14 | |||
15 | protected function formClassName() |
||
16 | { |
||
17 | return formClassName($this->params['name'], ['get_', '_array', 'create_']) . 'Config'; |
||
18 | } |
||
19 | |||
20 | protected function formClassNamespace() |
||
21 | { |
||
22 | return 'carono\turbotext\config'; |
||
23 | } |
||
24 | |||
25 | protected function formOutputPath() |
||
28 | } |
||
29 | |||
30 | protected function classProperties() |
||
31 | { |
||
45 | } |
||
46 | } |