Fixes... :(
authorRoland Häder <roland@mxchange.org>
Sat, 24 Apr 2010 01:06:31 +0000 (01:06 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 24 Apr 2010 01:06:31 +0000 (01:06 +0000)
inc/classes/main/factories/registry/class_SocketRegistryFactory.php

index e0b909bad561fef97b3963f07c5e327cf4f2ba6f..9a7163082c27872ba982059b9fa4f9eae0dbaa08 100644 (file)
@@ -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);