diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2010-12-15 18:58:41 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2010-12-15 18:58:41 +0100 |
| commit | d4bb6e2400c09d7405d20df2967936952c31fbf4 (patch) | |
| tree | df503f8186fb4661485e307b9c30d655c85b91b8 | |
| parent | 8735a31fb391e9ef228f23873addb015385c77b4 (diff) | |
| download | linksys-wrt3g-tools-d4bb6e2400c09d7405d20df2967936952c31fbf4.tar.gz linksys-wrt3g-tools-d4bb6e2400c09d7405d20df2967936952c31fbf4.zip | |
fix docblocks
| -rw-r--r-- | Wrt3g.php | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -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'); |
