]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/factories/package/class_NetworkPackageFactory.php
Updated 'core'.
[hub.git] / application / hub / main / factories / package / class_NetworkPackageFactory.php
index d4d5b380a837662ac8b5fd42f63b2ca4a2c3783c..725c6768b6f32d4bd14b43e6619ee844b7a329d1 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A factory class for network packages
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -45,19 +45,21 @@ class NetworkPackageFactory extends ObjectFactory {
                        // Then use this instance
                        $packageInstance = Registry::getRegistry()->getInstance('network_package');
                } else {
-                       /**
-                        * Prepare the compressor for our package, GZIP should be fine but we
+                       /*
+                        * Prepare the compressor for our package, ZLIB should be fine but we
                         * keep it open here so you can experiment with the settings and don't
-                        * need to touch any code.
+                        * need to touch this code.
                         */
-                       $compressorInstance = ObjectFactory::createObjectByConfiguredName('raw_package_compressor_class');
+                       $compressorInstance = self::createObjectByConfiguredName('raw_package_compressor_class');
 
                        // Prepare the decorator compressor (for later flawless and easy updates)
-                       $compressorInstance = ObjectFactory::createObjectByConfiguredName('deco_package_compressor_class', array($compressorInstance));
+                       $compressorInstance = self::createObjectByConfiguredName('deco_package_compressor_class', array($compressorInstance));
 
-                       // Now prepare the network package for delivery so only need to do this
-                       // once just before the "big announcement loop".
-                       $packageInstance = ObjectFactory::createObjectByConfiguredName('network_package_class', array($compressorInstance));
+                       /*
+                        * Now prepare the network package for delivery so only need to do this
+                        * once just before the "big announcement loop".
+                        */
+                       $packageInstance = self::createObjectByConfiguredName('network_package_class', array($compressorInstance));
 
                        // Set the instance in registry for further use
                        Registry::getRegistry()->addInstance('network_package', $packageInstance);