コード例 #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);
 }