1
0
mirror of synced 2024-12-13 22:56:04 +03:00

fixed references to get()

This commit is contained in:
zYne 2007-10-07 21:34:06 +00:00
parent f160487445
commit 24885c0113

View File

@ -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);
}
}
/**