예제 #1
0
파일: event.php 프로젝트: TheShockTop/dirp
 /**
  * __construct
  *
  * @param string $name
  * @param array $params
  */
 public function __construct($name, array $params = null)
 {
     $this->_name = $name;
     parent::__construct($params);
 }
예제 #2
0
파일: view.php 프로젝트: TheShockTop/dirp
 /**
  * __construct
  *
  * @param string $path
  * @param array $params
  */
 public function __construct($path, array $params = null)
 {
     $this->_path = $path;
     parent::__construct($params);
 }