示例#1
0
 /**
  * Append to a file.
  *
  * @param string $path
  * @param string $data
  * @return int 
  * @static 
  */
 public static function append($path, $data, $separator = '')
 {
     return \Illuminate\Filesystem\FilesystemAdapter::append($path, $data, $separator);
 }
示例#2
0
 /**
  * Append to a file.
  *
  * @param string $path
  * @param string $data
  * @return int 
  * @static 
  */
 public static function append($path, $data)
 {
     return \Illuminate\Filesystem\FilesystemAdapter::append($path, $data);
 }