fix docblocks
authorChristian Weiske <cweiske@cweiske.de>
Wed, 15 Dec 2010 17:58:41 +0000 (18:58 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Wed, 15 Dec 2010 17:58:41 +0000 (18:58 +0100)
Wrt3g.php

index 8d12ca611538f9e58195399a3c279e49c84e78de..82c728f04750f4f7179363334bec4423435a5841 100644 (file)
--- 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');