debug
This commit is contained in:
parent
f045f18ecf
commit
d154cab623
|
@ -45,10 +45,15 @@ class S3Storage
|
||||||
|
|
||||||
private function configIsNotNormed($config)
|
private function configIsNotNormed($config)
|
||||||
{
|
{
|
||||||
// dump($config); die;
|
return (
|
||||||
dump(array_merge($this->required_config_field, array_keys($config))); die;
|
isset($config['type']) &&
|
||||||
return (false);
|
isset($config['bucket']) &&
|
||||||
// return ()
|
isset($config['region']) &&
|
||||||
|
isset($config['endpoint']) &&
|
||||||
|
isset($config['credentials']) &&
|
||||||
|
isset($config['credentials']['key']) &&
|
||||||
|
isset($config['credentials']['secret'])
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getPrefix($prefix = null)
|
protected function getPrefix($prefix = null)
|
||||||
|
|
Loading…
Reference in New Issue