mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
11 lines
137 B
PHP
11 lines
137 B
PHP
<?php
|
|
|
|
namespace App\StorageProviders;
|
|
|
|
use Aws\S3\S3Client;
|
|
|
|
interface S3ClientInterface
|
|
{
|
|
public function getClient(): S3Client;
|
|
}
|