Beispiel #1
0
 protected function initModules()
 {
     if (isset($this->container['modules'])) {
         foreach ($this->container['modules'] as $module) {
             $this->kernel->getModuleProvider($module)->registerConsole($this);
         }
     }
 }
Beispiel #2
0
<?php

error_reporting(-1);
ini_set('display_errors', 1);
define('START_TIME', microtime(true));
define('START_MEMORY', memory_get_usage());
define('ROOT_PATH', dirname(__DIR__) . '/');
define('APPLICATION_PATH', ROOT_PATH . 'Application/');
define('CONFIG_PATH', APPLICATION_PATH . 'configs/');
define('PUBLIC_PATH', ROOT_PATH . 'www/');
define('FILE_PATH', PUBLIC_PATH . 'files/');
define('FILE_PATH_URL', '/files/');
require_once ROOT_PATH . 'vendor/autoload.php';
use Nameless\Core\Application;
$framework = new Application();
$framework->run();