Drop silly $_ prefix from 4.x days
authorChad Horohoe <demon@users.mediawiki.org>
Fri, 5 Nov 2010 12:59:37 +0000 (12:59 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Fri, 5 Nov 2010 12:59:37 +0000 (12:59 +0000)
includes/WebRequest.php

index ef35201..4cd120a 100644 (file)
  */
 class WebRequest {
        protected $data, $headers = array();
-       private $_response;
+
+       /**
+        * Lazy-init response object
+        * @var WebResponse
+        */
+       private $response;
 
        public function __construct() {
                /// @todo Fixme: this preemptive de-quoting can interfere with other web libraries
@@ -665,11 +670,11 @@ class WebRequest {
         */
        public function response() {
                /* Lazy initialization of response object for this request */
-               if ( !is_object( $this->_response ) ) {
+               if ( !is_object( $this->response ) ) {
                        $class = ( $this instanceof FauxRequest ) ? 'FauxResponse' : 'WebResponse';
-                       $this->_response = new $class();
+                       $this->response = new $class();
                }
-               return $this->_response;
+               return $this->response;
        }
 
        /**