* the registry it will be returned, else a new instance is created and
* stored in the same registry entry.
*
- * @return $packageInstance A socket registry instance
+ * @return $registryInstance A socket registry instance
*/
public static final function createSocketRegistryInstance () {
// Get registry instance
// Do we have an instance in the registry?
if ($registryInstance->instanceExists('socket_registry')) {
// Then use this instance
- $packageInstance = $registryInstance->getInstance('socket_registry');
+ $registryInstance = $registryInstance->getInstance('socket_registry');
} else {
// Get the registry instance
- $packageInstance = ObjectFactory::createObjectByConfiguredName('socket_registry_class');
+ $registryInstance = ObjectFactory::createObjectByConfiguredName('socket_registry_class');
// Set the instance in registry for further use
- $registryInstance->addInstance('socket_registry', $packageInstance);
+ $registryInstance->addInstance('socket_registry', $registryInstance);
}
// Return the instance
- return $packageInstance;
+ return $registryInstance;
}
/**