mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
15 lines
284 B
PHP
15 lines
284 B
PHP
<?php
|
|
|
|
namespace App\StorageProviders;
|
|
|
|
interface S3StorageInterface
|
|
{
|
|
public function getApiUrl(): string;
|
|
|
|
public function setApiUrl(?string $region = null): void;
|
|
|
|
public function getBucketRegion(): string;
|
|
|
|
public function setBucketRegion(string $region): void;
|
|
}
|