mirror of
https://gh.wpcy.net/https://github.com/pixelabs-wp/whitelabel-plugins-update-server.git
synced 2026-04-18 04:02:15 +08:00
13 lines
246 B
PHP
13 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 = []);
|
|
}
|