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

Commit

Permalink
Merge branch 'hotfix/237'
Browse files Browse the repository at this point in the history
Close #237
  • Loading branch information
weierophinney committed May 1, 2017
2 parents 2c64d2e + 7e5c560 commit 3a2eb59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#237](https://github.com/zendframework/zend-mvc/pull/237) fixes the return
annotations for `HttpDefaultRenderingStrategyFactory::createService` and
`injectLayoutTemplate()` to be `HttpDefaultRenderingStrategy` and not
`HttpDefaultRendererStrategy`.

## 3.0.4 - 2016-12-20

Expand Down
4 changes: 2 additions & 2 deletions src/Service/HttpDefaultRenderingStrategyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __invoke(ContainerInterface $container, $name, array $options =
* For use with zend-servicemanager v2; proxies to __invoke().
*
* @param ServiceLocatorInterface $container
* @return DefaultRendererStrategy
* @return DefaultRenderingStrategy
*/
public function createService(ServiceLocatorInterface $container)
{
Expand All @@ -53,7 +53,7 @@ public function createService(ServiceLocatorInterface $container)
*
* Uses layout template from configuration; if none available, defaults to "layout/layout".
*
* @param DefaultRendererStrategy $strategy
* @param DefaultRenderingStrategy $strategy
* @param array $config
*/
private function injectLayoutTemplate(DefaultRenderingStrategy $strategy, array $config)
Expand Down

0 comments on commit 3a2eb59

Please sign in to comment.