aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2010-12-15 18:58:41 +0100
committerChristian Weiske <cweiske@cweiske.de>2010-12-15 18:58:41 +0100
commitd4bb6e2400c09d7405d20df2967936952c31fbf4 (patch)
treedf503f8186fb4661485e307b9c30d655c85b91b8
parent8735a31fb391e9ef228f23873addb015385c77b4 (diff)
downloadlinksys-wrt3g-tools-d4bb6e2400c09d7405d20df2967936952c31fbf4.tar.gz
linksys-wrt3g-tools-d4bb6e2400c09d7405d20df2967936952c31fbf4.zip
fix docblocks
-rw-r--r--Wrt3g.php30
1 files changed, 15 insertions, 15 deletions
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');