Example #1
0
 /**
  * @param $xml
  */
 protected function createXmlFile($xml)
 {
     $file = $this->config->getFilepath() . '/' . $this->config->getFilename();
     $fp = fopen($file, "w+");
     fwrite($fp, $xml);
     fclose($fp);
 }