예제 #1
0
파일: Storage.php 프로젝트: bugotech/io
 /**
  * Set the visibility for the given path.
  *
  * @param  string $path
  * @param  string $visibility
  *
  * @return void
  */
 public function setVisibility($path, $visibility)
 {
     $path = $this->getPathPrefix($path);
     $this->drive->setVisibility($path, $visibility);
 }