diff options
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php')
-rw-r--r-- | apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php deleted file mode 100644 index 304100dcf9f..00000000000 --- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/ConfigLoaderInterface.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Guzzle\Service; - -/** - * Interface used for loading configuration data (service descriptions, service builder configs, etc) - * - * If a loaded configuration data sets includes a top level key containing an 'includes' section, then the data in the - * file will extend the merged result of all of the included config files. - */ -interface ConfigLoaderInterface -{ - /** - * Loads configuration data and returns an array of the loaded result - * - * @param mixed $config Data to load (filename or array of data) - * @param array $options Array of options to use when loading - * - * @return mixed - */ - public function load($config, array $options = array()); -} |