From 24885c011382586e4669ab71b3e34328f2bee129 Mon Sep 17 00:00:00 2001 From: zYne Date: Sun, 7 Oct 2007 21:34:06 +0000 Subject: [PATCH] fixed references to get() --- lib/Doctrine/Locator/Injectable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Locator/Injectable.php b/lib/Doctrine/Locator/Injectable.php index c5e69d86a..6990c3060 100644 --- a/lib/Doctrine/Locator/Injectable.php +++ b/lib/Doctrine/Locator/Injectable.php @@ -97,10 +97,10 @@ class Doctrine_Locator_Injectable // get the name of the concrete implementation $concreteImpl = $this->_resources[$name]; - return $this->getLocator()->get($concreteImpl); + return $this->getLocator()->locate($concreteImpl); } } else { - return $this->getLocator()->get($name); + return $this->getLocator()->locate($name); } } /**