Example #1
0
 /**
  * Creates or updates this file
  * @param string $content The content to write
  * @param boolean $append Set to true to append to the file, false to
  * overwrite (default)
  * @return null
  * @throws zibo\library\filesystem\exception\FileSystemException when the
  * file could not be written
  */
 public function write($content = '', $append = false)
 {
     $this->fs->write($this, $content, $append);
 }