From: Chad Horohoe Date: Wed, 3 Sep 2008 17:30:20 +0000 (+0000) Subject: Add @ingroup definitions to these. Created new group HTTP for web-related things... X-Git-Tag: 1.31.0-rc.0~45505 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=3064f477ff9bd643f4aed5e786324d0d6281833d;p=lhc%2Fweb%2Fwiklou.git Add @ingroup definitions to these. Created new group HTTP for web-related things (cookies, headers, HTTP requests, etc). --- diff --git a/includes/HttpFunctions.php b/includes/HttpFunctions.php index 555a79b733..8ae4d2dfa1 100644 --- a/includes/HttpFunctions.php +++ b/includes/HttpFunctions.php @@ -2,6 +2,7 @@ /** * Various HTTP related functions + * @ingroup HTTP */ class Http { static function get( $url, $timeout = 'default' ) { diff --git a/includes/WebRequest.php b/includes/WebRequest.php index 3a845daede..46816e4ef5 100644 --- a/includes/WebRequest.php +++ b/includes/WebRequest.php @@ -39,7 +39,8 @@ if ( !function_exists( '__autoload' ) ) { * not create a second WebRequest object; make a FauxRequest object if * you want to pass arbitrary data to some function in place of the web * input. - * + * + * @ingroup HTTP */ class WebRequest { var $data = array(); @@ -641,6 +642,7 @@ class WebRequest { /** * WebRequest clone which takes values from a provided array. * + * @ingroup HTTP */ class FauxRequest extends WebRequest { var $wasPosted = false; diff --git a/includes/WebResponse.php b/includes/WebResponse.php index e3a6a1e05f..aeb2c64523 100644 --- a/includes/WebResponse.php +++ b/includes/WebResponse.php @@ -2,6 +2,7 @@ /** * Allow programs to request this object from WebRequest::response() * and handle all outputting (or lack of outputting) via it. + * @ingroup HTTP */ class WebResponse {