| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class HomePageCore extends ModuleCore |
||
| 9 | { |
||
| 10 | protected static $alias = 'homepage'; |
||
| 11 | |||
| 12 | protected static $view = HomePageSettings::class; |
||
| 13 | |||
| 14 | protected static $joints = [ |
||
| 15 | Integration\HomePageSystemSettings::class |
||
| 16 | ]; |
||
| 17 | |||
| 18 | protected static $requires = [ |
||
| 19 | AccessCore::class |
||
| 20 | ]; |
||
| 21 | |||
| 22 | public function install() |
||
| 39 |