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/42'
Browse files Browse the repository at this point in the history
Close #42
  • Loading branch information
weierophinney committed May 17, 2017
2 parents 46119a2 + 55d96cb commit cf8b079
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
26 changes: 7 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,17 @@

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

## 2.3.0 - TBD

### Added

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 2.2.2 - TBD

### Added

- Nothing.
### Changes

- [#42](https://github.com/zendframework/zend-hydrator/pull/42) updates the
`ConfigProvider::getDependencies()` method to map the `HydratorPluginManager`
class to the `HydratorPluginManagerFactory` class, and make the
`HydratorManager` service an alias to the fully-qualified
`HydratorPluginManager` class.

### Deprecated

Expand Down
5 changes: 4 additions & 1 deletion src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ public function __invoke()
public function getDependencyConfig()
{
return [
'aliases' => [
'HydratorManager' => HydratorPluginManager::class,
],
'factories' => [
'HydratorManager' => HydratorPluginManagerFactory::class,
HydratorPluginManager::class => HydratorPluginManagerFactory::class,
],
];
}
Expand Down

0 comments on commit cf8b079

Please sign in to comment.