flight\Engine::__construct PHP 메소드

__construct() 공개 메소드

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

Usage Example

예제 #1
0
파일: App.php 프로젝트: bluematt/korpus-app
 /**
  * Constructor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->set('app.settings.debug', false);
 }