Example #1
0
 public function put_contents_into_file($file_name, $contents)
 {
     include_once $this->env->basedir . 'lib/file.php';
     $file = new File($file_name);
     $file->put_contents($contents);
 }