예제 #1
0
 /**
  * @return bool
  */
 public function isExists()
 {
     return parent::isExists();
 }
예제 #2
0
파일: File.php 프로젝트: ncrousset/gencrud
 /**
  * @param $name
  * @return bool
  */
 public function isExists($name)
 {
     $this->path = $this->path . $name . '.php';
     return parent::isExists();
 }