Commit 24885c01 authored by zYne's avatar zYne

fixed references to get()

parent f1604874
...@@ -97,10 +97,10 @@ class Doctrine_Locator_Injectable ...@@ -97,10 +97,10 @@ class Doctrine_Locator_Injectable
// get the name of the concrete implementation // get the name of the concrete implementation
$concreteImpl = $this->_resources[$name]; $concreteImpl = $this->_resources[$name];
return $this->getLocator()->get($concreteImpl); return $this->getLocator()->locate($concreteImpl);
} }
} else { } else {
return $this->getLocator()->get($name); return $this->getLocator()->locate($name);
} }
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment