예제 #1
0
파일: Storage.php 프로젝트: bugotech/io
 /**
  * Prepend to a file.
  *
  * @param  string $path
  * @param  string $data
  *
  * @return int
  */
 public function prepend($path, $data)
 {
     $path = $this->getPathPrefix($path);
     return $this->drive->prepend($path, $data);
 }