From: Christian Weiske Date: Wed, 15 Dec 2010 17:58:41 +0000 (+0100) Subject: fix docblocks X-Git-Tag: 1.0.0~36 X-Git-Url: https://git.cweiske.de/linksys-wrt3g-tools.git/commitdiff_plain/d4bb6e2400c09d7405d20df2967936952c31fbf4 fix docblocks --- diff --git a/Wrt3g.php b/Wrt3g.php index 8d12ca6..82c728f 100644 --- a/Wrt3g.php +++ b/Wrt3g.php @@ -88,12 +88,12 @@ class Wrt3g /** - * Reboots the router. - * - * @return HTTP_Request2_Response - * - * @throws Exception When the router can't be reached, or unauthorized - */ + * Reboots the router. + * + * @return HTTP_Request2_Response + * + * @throws Exception When the router can't be reached, or unauthorized + */ public function reboot() { $url = $this->getAuthBaseUrl() . '/apply.cgi'; @@ -113,13 +113,13 @@ class Wrt3g /** - * Retrieves status information about the router - * - * @return array Array with several key-value pairs - * connection => connecting, disconnected, connected - * - * @throws Exception When the router can't be reached, or unauthorized - */ + * Retrieves status information about the router + * + * @return array Array with several key-value pairs + * connection => connecting, disconnected, connected + * + * @throws Exception When the router can't be reached, or unauthorized + */ public function getStatus() { $arRetval = array(); @@ -128,8 +128,8 @@ class Wrt3g $parser = new Wrt3g_HtmlParser(); /** - * Connection status - */ + * Connection status + */ $r = new HTTP_Request2(); $r->setMethod(HTTP_Request2::METHOD_GET); $r->setUrl($strUrlBase . '/index_wstatus2.asp');