Frisbee\View\AbstractView::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $vars )
    public function __construct($vars)
    {
        $this->vars = $vars;
    }

Usage Example

예제 #1
0
파일: TwigView.php 프로젝트: enrise/frisbee
 public function __construct($template, $vars = [])
 {
     $this->templateName = $template;
     parent::__construct($vars);
 }