Renamed Registry -> GenericRegistry to make it clear that this registry does
[core.git] / framework / main / classes / request / class_
index 10b6a14eb0bd84378f34b0b99376382102d42086..48b31ceab0c1b3bdcd83f51b37fb5ed703cf1ae1 100644 (file)
@@ -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.");
        }