Skip to content

Commit

Permalink
Merge pull request #97 from marcaube/fix-undefined-index-http
Browse files Browse the repository at this point in the history
Fix "'Undefined index: http' in AwsS3Provider.php:140"
  • Loading branch information
Mulkave committed Jun 30, 2016
2 parents 802dfae + cc3b40d commit c8ef553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vinelab/Cdn/Providers/AwsS3Provider.php
Expand Up @@ -126,7 +126,7 @@ public function init($configurations)
{
// merge the received config array with the default configurations array to
// fill missed keys with null or default values.
$this->default = array_merge($this->default, $configurations);
$this->default = array_replace_recursive($this->default, $configurations);

$supplier = [
'provider_url' => $this->default['url'],
Expand Down

0 comments on commit c8ef553

Please sign in to comment.