This commit is contained in:
Cyprian Beauvois 2019-02-20 12:40:09 +01:00
parent 997ef1a199
commit 0f8f7a439a
1 changed files with 5 additions and 3 deletions

View File

@ -20,13 +20,15 @@ class Storage
public function get($storage_name)
{
dump($this->config_storage, $storage_name, array_key_exists($storage_name, $this->config_storage)); die;
if (array_key_exists($storage_name, $this->config_storage))
{
$config = $this->config_storage[$storage_name];
if ($config['type'] == 's3')
return (new S3Storage($storage_name, $config));
switch ($config['type'])
{
case 's3': return (new S3Storage($storage_name, $config));
}
}
return (null);