Пример #1
0
 /**
  * Prepend to a file.
  *
  * @param string $path
  * @param string $data
  * @return int 
  * @static 
  */
 public static function prepend($path, $data, $separator = '')
 {
     return \Illuminate\Filesystem\FilesystemAdapter::prepend($path, $data, $separator);
 }
Пример #2
0
 /**
  * Prepend to a file.
  *
  * @param string $path
  * @param string $data
  * @return int 
  * @static 
  */
 public static function prepend($path, $data)
 {
     return \Illuminate\Filesystem\FilesystemAdapter::prepend($path, $data);
 }