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

Commit

Permalink
Merge pull request zendframework/zendframework#892 from matuszemi/hot…
Browse files Browse the repository at this point in the history
…fix/di-notice-fix

Simple fix for an undefined array index from matuszemi
  • Loading branch information
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Di.php
Expand Up @@ -111,7 +111,7 @@ public function instanceManager()
*/
public function get($name, array $params = array())
{
array_push($this->instanceContext, array('GET', $name));
array_push($this->instanceContext, array('GET', $name, null));

$im = $this->instanceManager;

Expand Down

0 comments on commit 053ab77

Please sign in to comment.