Example #1
0
File: app.php Project: sniyozov/mt
 public function run()
 {
     \CORE::msg('debug', 'app->run');
     if (is_readable(DIR_APP . '/run.php')) {
         include DIR_APP . '/run.php';
     } else {
         \CORE::msg('debug', 'app/run not found');
     }
     // mvc router
     \CORE::ROUTER();
     \CORE::msg('debug', 'router');
 }