X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Frequest%2Fclass_;h=48b31ceab0c1b3bdcd83f51b37fb5ed703cf1ae1;hp=e046132a1eb7785b1d299f2138388dcb343973a0;hb=b002c5909aa0f781505dde5414964b0f014cde01;hpb=78a010fef84895720e796842208f01dfb619c332 diff --git a/framework/main/classes/request/class_ b/framework/main/classes/request/class_ index e046132a..48b31cea 100644 --- a/framework/main/classes/request/class_ +++ b/framework/main/classes/request/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."); } @@ -90,7 +90,5 @@ class ???Request extends BaseRequest implements Requestable { public final function readCookie ($cookieName) { $this->partialStub("Please implement this method."); } -} -// [EOF] -?> +}