vito/app/StorageProviders/S3ClientInterface.php
2024-09-06 23:29:43 +02:00

11 lines
137 B
PHP

<?php
namespace App\StorageProviders;
use Aws\S3\S3Client;
interface S3ClientInterface
{
public function getClient(): S3Client;
}