flight\Engine::__construct PHP Method

__construct() public method

Constructor.
public __construct ( )
    public function __construct()
    {
        $this->vars = array();
        $this->loader = new Loader();
        $this->dispatcher = new Dispatcher();
        $this->init();
    }

Usage Example

Beispiel #1
0
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->set('app.settings.debug', false);
 }