Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
config-array-adder hat ein falsches Objekt angelegt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sven Speckmaier committed Aug 17, 2017
1 parent 04bed22 commit ee03dea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Configuration/ConfigurationProvider.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?php namespace Rancherize\Configuration;

use Rancherize\Configuration\ArrayAdder\ArrayAdder;
use Rancherize\Plugin\Provider;
use Rancherize\Plugin\ProviderTrait;

Expand All @@ -15,7 +16,7 @@ class ConfigurationProvider implements Provider {
*/
public function register() {
$this->container['config-array-adder'] = function() {
return new ArrayConfiguration();
return new ArrayAdder();
};
}

Expand Down

0 comments on commit ee03dea

Please sign in to comment.