This commit is contained in:
Cyprian Beauvois 2019-02-20 12:38:01 +01:00
parent f2b5c1b248
commit c58a039256
1 changed files with 3 additions and 2 deletions

View File

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