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

Commit

Permalink
Merge branch 'hotfix/module-view-config-removal'
Browse files Browse the repository at this point in the history
Fix issue in ConfigProvider and Module classes.
  • Loading branch information
weierophinney committed Apr 8, 2016
2 parents 4d4a1a9 + f561e82 commit 6708122
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.7.1 - TBD
## 2.7.1 - 2016-04-08

### Added

Expand All @@ -18,7 +18,8 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- This release removes the erroneous calls to `getViewHelperConfig()` in the
`ConfigProvider` and `Module` classes.

## 2.7.0 - 2016-04-08

Expand Down
1 change: 0 additions & 1 deletion src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public function __invoke()
{
return [
'dependencies' => $this->getDependencyConfig(),
'view_helpers' => $this->getViewHelperConfig(),
];
}

Expand Down
1 change: 0 additions & 1 deletion src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public function getConfig()
$provider = new ConfigProvider();
return [
'service_manager' => $provider->getDependencyConfig(),
'view_helpers' => $provider->getViewHelperConfig(),
];
}
}

0 comments on commit 6708122

Please sign in to comment.