X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Ffactories%2Fregistry%2Fclass_SocketRegistryFactory.php;h=9a7163082c27872ba982059b9fa4f9eae0dbaa08;hp=e0b909bad561fef97b3963f07c5e327cf4f2ba6f;hb=07531c027e5edccdfde29809a07c5df000daada6;hpb=51caaa61ae7ee017abdfd116bbd8c438451315b2 diff --git a/inc/classes/main/factories/registry/class_SocketRegistryFactory.php b/inc/classes/main/factories/registry/class_SocketRegistryFactory.php index e0b909ba..9a716308 100644 --- a/inc/classes/main/factories/registry/class_SocketRegistryFactory.php +++ b/inc/classes/main/factories/registry/class_SocketRegistryFactory.php @@ -29,14 +29,14 @@ class SocketRegistryFactory extends ObjectFactory { * * @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);