15 lines
274 B
PHP
15 lines
274 B
PHP
<?php
|
|
|
|
namespace UglyRobot\Infinite_Uploads\Aws;
|
|
|
|
interface ConfigurationProviderInterface
|
|
{
|
|
/**
|
|
* Create a default config provider
|
|
*
|
|
* @param array $config
|
|
* @return callable
|
|
*/
|
|
public static function defaultProvider(array $config = []);
|
|
}
|