예제 #1
0
파일: TaskRunner.php 프로젝트: ntentan/dev
 public function writeFile($templateFile, $data, $destination)
 {
     $output = \ntentan\honam\TemplateEngine::renderString(Filesystem::get($templateFile)->getContents(), 'mustache', $data);
     Filesystem::get($destination)->putContents($output);
 }