From: Michael M Slusarz Date: Wed, 14 Jul 2010 06:47:43 +0000 (-0600) Subject: phpdoc X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=41cccb9f9c3f93a91672bb9cae7d93a80ba732b6;p=horde.git phpdoc --- diff --git a/framework/Core/lib/Horde/Core/Factory/HttpClient.php b/framework/Core/lib/Horde/Core/Factory/HttpClient.php index 9530b1870..d0c0d1abe 100644 --- a/framework/Core/lib/Horde/Core/Factory/HttpClient.php +++ b/framework/Core/lib/Horde/Core/Factory/HttpClient.php @@ -22,6 +22,14 @@ class Horde_Core_Factory_HttpClient $this->_injector = $injector; } + /** + * Get client object. + * + * @param array $opts Configuration options. + * + * @return Horde_Http_Client Client object. + * @throws Horde_Http_Client_Exception + */ public function getClient(array $opts = array()) { global $conf; @@ -40,4 +48,5 @@ class Horde_Core_Factory_HttpClient return new Horde_Http_Client(array_merge($client_opts, $opts)); } -} \ No newline at end of file + +}