Continued:
[core.git] / framework / main / classes / request / class_
index 48b31ceab0c1b3bdcd83f51b37fb5ed703cf1ae1..c4ab6a908ef0a39f616b572762879d4d5aefcada 100644 (file)
@@ -1,13 +1,16 @@
 <?php
 // Own namespace
-namespace CoreFramework\Request;
+namespace Org\Mxchange\CoreFramework\Request;
+
+// Import framework stuff
+use Org\Mxchange\CoreFramework\Middleware\Debug\DebugMiddleware;
 
 /**
  * A concrete request class
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -30,7 +33,7 @@ class ???Request extends BaseRequest implements Requestable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -58,7 +61,7 @@ class ???Request extends BaseRequest implements Requestable {
         * @todo        Needs to be implemented
         */
        protected function prepareRequestData () {
-               $this->partialStub("Please implement this method.");
+               DebugMiddleware::getSelfInstance()->partialStub("Please implement this method.");
        }
 
        /**
@@ -68,7 +71,7 @@ class ???Request extends BaseRequest implements Requestable {
         * @return      $headerValue    Value of the header or 'null' if not found
         */
        public function getHeaderElement ($headerName) {
-               $this->partialStub("Please implement this method.");
+               DebugMiddleware::getSelfInstance()->partialStub("Please implement this method.");
        }
 
        /**
@@ -77,7 +80,7 @@ class ???Request extends BaseRequest implements Requestable {
         * @return      $requestMethod  Used request method
         */
        public final function getRequestMethod () {
-               $this->partialStub("Please implement this method.");
+               DebugMiddleware::getSelfInstance()->partialStub("Please implement this method.");
                return $_SERVER['REQUEST_METHOD'];
        }
 
@@ -88,7 +91,7 @@ class ???Request extends BaseRequest implements Requestable {
         * @return      $cookieValue    Value of cookie or null if not found
         */
        public final function readCookie ($cookieName) {
-               $this->partialStub("Please implement this method.");
+               DebugMiddleware::getSelfInstance()->partialStub("Please implement this method.");
        }
 
 }