Merge "Skin: Make skins aware of their registered skin name"
[lhc/web/wiklou.git] / includes / http / PhpHttpRequest.php
index d8a9949..0c5d162 100644 (file)
@@ -88,12 +88,19 @@ class PhpHttpRequest extends MWHttpRequest {
         * so normal methods of handling errors programmatically
         * like get_last_error() don't work.
         * @internal
+        * @param int $errno
+        * @param string $errstr
         */
        public function errorHandler( $errno, $errstr ) {
                $n = count( $this->fopenErrors ) + 1;
                $this->fopenErrors += [ "errno$n" => $errno, "errstr$n" => $errstr ];
        }
 
+       /**
+        * @see MWHttpRequest::execute
+        *
+        * @return Status
+        */
        public function execute() {
                $this->prepare();