Exemplo n.º 1
0
 /**
  * @param $fileName
  */
 public function save($fileName)
 {
     if (!file_exists(dirname($fileName))) {
         throw new \RuntimeException('Can\'t write to location ' . $fileName);
     }
     $data = $this->view->drawField();
     $res = file_put_contents($fileName, $data);
     if (false === $res) {
         throw new \RuntimeException(sprintf('File %s not written', $fileName));
     }
 }