*
* @return $packageInstance A socket registry instance
*/
- public static final function createNetworkPackageInstance () {
+ public static final function createSocketRegistryInstance () {
// Do we have an instance in the registry?
if (Registry::getRegistry()->instanceExists('socket_registry')) {
// Then use this instance
$packageInstance = Registry::getRegistry()->getInstance('socket_registry');
} else {
// Get the registry instance
- $packageInstance = ObjectFactory::createObjectByConfiguredName('socket_registry_class', array($compressorInstance));
+ $packageInstance = ObjectFactory::createObjectByConfiguredName('socket_registry_class');
// Set the instance in registry for further use
Registry::getRegistry()->addInstance('socket_registry', $packageInstance);