Ejemplo n.º 1
0
 /**
  * Starts the engine
  */
 public static function start()
 {
     session_start();
     # components
     require 'vendor/autoload.php';
     self::init();
     self::setup();
     # routes
     require 'app/router.php';
     F::start();
 }