/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
league
/
flysystem
/
src
/
AwsS3V3
/
Upload File
HOME
<?php declare(strict_types=1); namespace League\Flysystem\AwsS3V3; interface VisibilityConverter { public function visibilityToAcl(string $visibility): string; public function aclToVisibility(array $grants): string; public function defaultForDirectories(): string; }