Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Dec 14, 2010
1 parent 53eb73a commit 3dea789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dumper/PhpDumper.php
Expand Up @@ -67,7 +67,7 @@ protected function addInterfaceInjectors()
*
* @param Object \$instance
*/
protected function applyIntrefaceInjectors(\$instance)
protected function applyInterfaceInjectors(\$instance)
{
EOF;
Expand Down Expand Up @@ -161,7 +161,7 @@ protected function addServiceMethodCalls($id, $definition)
}

if (!$this->container->isFrozen() && count($this->container->getInterfaceInjectors()) > 0) {
$calls = sprintf("\n \$this->applyIntrefaceInjectors(\$instance);\n");
$calls = sprintf("\n \$this->applyInterfaceInjectors(\$instance);\n");
}

return $calls;
Expand Down

0 comments on commit 3dea789

Please sign in to comment.