コード例 #1
0
ファイル: Directory.php プロジェクト: ncrousset/gencrud
 /**
  * @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();
 }