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