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

Commit 3a2eb59

Browse files
committed
Merge branch 'hotfix/237'
Close #237
2 parents 2c64d2e + 7e5c560 commit 3a2eb59

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ All notable changes to this project will be documented in this file, in reverse
2121

2222
### Fixed
2323

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

2629
## 3.0.4 - 2016-12-20
2730

src/Service/HttpDefaultRenderingStrategyFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __invoke(ContainerInterface $container, $name, array $options =
4141
* For use with zend-servicemanager v2; proxies to __invoke().
4242
*
4343
* @param ServiceLocatorInterface $container
44-
* @return DefaultRendererStrategy
44+
* @return DefaultRenderingStrategy
4545
*/
4646
public function createService(ServiceLocatorInterface $container)
4747
{
@@ -53,7 +53,7 @@ public function createService(ServiceLocatorInterface $container)
5353
*
5454
* Uses layout template from configuration; if none available, defaults to "layout/layout".
5555
*
56-
* @param DefaultRendererStrategy $strategy
56+
* @param DefaultRenderingStrategy $strategy
5757
* @param array $config
5858
*/
5959
private function injectLayoutTemplate(DefaultRenderingStrategy $strategy, array $config)

0 commit comments

Comments
 (0)