for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Epesi\Core\System;
class SystemCore extends Modules\ModuleCore
{
protected static $alias = 'system';
protected static $view = SystemSettings::class;
protected static $joints = [
Integration\SystemSettingsUserMenu::class,
Integration\ModuleAdministrationSystemSettings::class
];
protected static $requires = [
\Epesi\Core\Layout\LayoutCore::class,
User\UserCore::class,
protected static $recommends = [
'dashboard'
public function migrate()
Model\Module::migrate();
Model\Variable::migrate();
return parent::migrate();
}