X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Frequest%2Fclass_;h=23cae4e36ebff38998e986922da984ad06d4e68c;hb=3ed365cb1808ac8a228da18241e789866f419178;hp=10b6a14eb0bd84378f34b0b99376382102d42086;hpb=8a14c547a7c7ef07bc3d67778aa4008fa17d703f;p=core.git diff --git a/framework/main/classes/request/class_ b/framework/main/classes/request/class_ index 10b6a14e..23cae4e3 100644 --- a/framework/main/classes/request/class_ +++ b/framework/main/classes/request/class_ @@ -1,13 +1,13 @@ * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -30,7 +30,7 @@ class ???Request extends BaseRequest implements Requestable { * * @return void */ - protected function __construct () { + private function __construct () { // Call parent constructor parent::__construct(__CLASS__); } @@ -38,17 +38,17 @@ class ???Request extends BaseRequest implements Requestable { /** * Creates an instance of this class and prepares it a little * - * @return $httpInstance An instance of this class + * @return $requestInstance An instance of this class */ public final static function create???Request () { // Create an instance - $httpInstance = new ???Request(); + $requestInstance = new ???Request(); // Prepare the HTTP request data for usage - $httpInstance->prepareRequestData(); + $requestInstance->prepareRequestData(); // Return the prepared instance - return $httpInstance; + return $requestInstance; } /** @@ -57,7 +57,7 @@ class ???Request extends BaseRequest implements Requestable { * @return void * @todo Needs to be implemented */ - public function prepareRequestData () { + protected function prepareRequestData () { $this->partialStub("Please implement this method."); }