예제 #1
0
파일: HtmlRoute.php 프로젝트: gudwin/extasy
 public function __construct($config = [])
 {
     if (!isset($config['path'])) {
         throw new \InvalidArgumentException('Argument `path` not found');
     }
     $this->filePath = $config['path'];
     parent::__construct($config);
 }