Skip to content
This repository has been archived by the owner on Mar 1, 2022. It is now read-only.

Commit

Permalink
Don't use as_array() for loading config
Browse files Browse the repository at this point in the history
  • Loading branch information
rjd22 committed Jul 29, 2015
1 parent 4974212 commit 56ee0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(array $providers)
*/
public static function factory()
{
$dependencyConfigPaths = Kohana::$config->load('pimple.dependencyConfigPaths')->as_array();
$dependencyConfigPaths = Kohana::$config->load('pimple.dependencyConfigPaths');

return new self([
new ArrayFileProvider($dependencyConfigPaths)
Expand Down

0 comments on commit 56ee0d7

Please sign in to comment.