Beispiel #1
0
 /**
  * Append to a file.
  *
  * @param string $path
  * @param string $data
  * @return int 
  * @static 
  */
 public static function append($path, $data)
 {
     //Method inherited from \Illuminate\Filesystem\Filesystem
     return \October\Rain\Filesystem\Filesystem::append($path, $data);
 }