Example #1
0
 /**
  * Builds a new PHP file template
  *
  * @param mixed $file The file this tempalte should load
  * @return \r8\Template\PHP
  */
 public function php($file)
 {
     $tpl = new \r8\Template\PHP($this->finder, $file);
     $tpl->import($this->getValues());
     return $tpl;
 }