mirror of
https://github.com/10h30/laravel-file-upload-series.git
synced 2026-07-11 18:55:57 +09:00
14 lines
246 B
PHP
14 lines
246 B
PHP
<?php
|
|
namespace Aws;
|
|
|
|
interface ConfigurationProviderInterface
|
|
{
|
|
/**
|
|
* Create a default config provider
|
|
*
|
|
* @param array $config
|
|
* @return callable
|
|
*/
|
|
public static function defaultProvider(array $config = []);
|
|
}
|