Rewrites for client factory, added methods for HttpClient (mostly from ConsoleClient).
[core.git] / inc / classes / main / factories / objects / class_ObjectFactory.php
index 6e4a4dc2e89fa53a60a4d5b3a6204ea08731e4c5..a323b32a2959259584f625a41e6473c1b3544737 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An general object factory
  *
- * @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 - 2012 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core 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
@@ -58,9 +58,7 @@ class ObjectFactory extends BaseFactory {
                }
 
                // Create method name
-               $methodName = sprintf("create%s",
-                       $className
-               );
+               $methodName = sprintf('create%s', $className);
 
                // Run the user function
                $objectInstance = call_user_func_array(array($className, $methodName), $args);