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

Commit

Permalink
Merge branch 'hotfix/91' into develop
Browse files Browse the repository at this point in the history
Forward port #91
  • Loading branch information
weierophinney committed Sep 1, 2016
2 parents fdb6615 + b900f77 commit 885af85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#91](https://github.com/zendframework/zend-expressive-skeleton/pull/91) fixes
the Pimple factory caching to work correctly with invokable classes used as
factories.

## 1.0.2 - 2016-04-21

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
$factory = $c->get($object);
} else {
$factory = new $object();
$c[$object] = $factory;
$c[$object] = $c->protect($factory);
}

return $factory($c, $name);
Expand Down

0 comments on commit 885af85

Please sign in to comment.