저자: Victor Farazdagi
상속: extends Base
예제 #1
0
파일: Plain.php 프로젝트: farazdagi/phrozn
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     if (!$this->outputFile) {
         $path = new OutputFile($this);
         $this->setOutputFile($path->get());
     }
     return $this->outputFile;
 }
예제 #2
0
파일: Plain.php 프로젝트: ntulip/phrozn
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     $path = new OutputFile($this);
     return $path->get();
 }