namespace added, this *must* be applied now to all calls of ObjectFactory methods
authorRoland Haeder <roland@mxchange.org>
Wed, 22 Feb 2017 22:26:42 +0000 (23:26 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 28 Feb 2017 21:10:04 +0000 (22:10 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
application/tests/class_ApplicationHelper.php
inc/main/classes/request/class_

index fdf74a81192700557ec086d6b3ee76b6a75084cd..670cf90154f3b7d5a6cff606dca63036ae6dc016 100644 (file)
@@ -168,7 +168,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                $responseType = self::getResponseTypeFromSystem();
 
                // Create a new request object
-               $requestInstance = ObjectFactory::createObjectByName(self::convertToClassName($response) . 'Request');
+               $requestInstance = ObjectFactory::createObjectByName(sprintf('\CoreFramework\Request\%sRequest', self::convertToClassName($response)));
 
                // Remember request instance here
                $this->setRequestInstance($requestInstance);
@@ -181,7 +181,7 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                } // END - if
 
                // ... and a new response object
-               $responseClass = sprintf('%sResponse', self::convertToClassName($response));
+               $responseClass = sprintf('\CoreFramework\Response\%sResponse', self::convertToClassName($response));
                $responseInstance = ObjectFactory::createObjectByName($responseClass, array($this));
 
                // Remember response instance here
index 848d3c8ac799be204becf397f497cd153c841de3..e046132a1eb7785b1d299f2138388dcb343973a0 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+// Own namespace
+namespace CoreFramework\Request;
+
 /**
  * A concrete request class
  *