Ejemplo n.º 1
0
 /**
  * Render
  */
 public function __destruct()
 {
     $this->template->render();
 }
 /**
  * @param TemplateInterface $template
  * @param string $filePath
  * @return bool
  */
 public function dump(TemplateInterface $template, $filePath)
 {
     $wasSuccessful = file_put_contents($filePath, $template->render()) !== false;
     return $wasSuccessful;
 }