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

Commit

Permalink
Correct ConfigProvider for invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Oct 3, 2017
1 parent 749a4e3 commit 4092f0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class ConfigProvider
public function __invoke()
{
return [
'dependencies' => $provider->getDependencyConfig(),
'zf-apigility-doctrine-query-create-filter' => $provider->getQueryCreateFilterConfig(),
'zf-apigility-doctrine-query-provider' => $provider->getQueryProviderConfig(),
'dependencies' => $this->getDependencyConfig(),
'zf-apigility-doctrine-query-create-filter' => $this->getQueryCreateFilterConfig(),
'zf-apigility-doctrine-query-provider' => $this->getQueryProviderConfig(),
];
}

Expand Down

0 comments on commit 4092f0b

Please sign in to comment.