]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
tiny phpdoc fixes
authorRobin Millette <millette@plantard.controlezvous.ca>
Tue, 20 Jan 2009 20:44:03 +0000 (20:44 +0000)
committerRobin Millette <millette@plantard.controlezvous.ca>
Tue, 20 Jan 2009 20:44:03 +0000 (20:44 +0000)
actions/doc.php

index fd48ac110fc38377238ac063cfea5b892acb3d83..aaf006f07159abbbd8ca91f52a72a28cea91ebef 100644 (file)
@@ -42,9 +42,7 @@ if (!defined('LACONICA')) {
  * @author   Robin Millette <millette@controlyourself.ca>
  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  * @link     http://laconi.ca/
-
-
-*/
+ */
 class DocAction extends Action
 {
     var $filename;
@@ -56,7 +54,7 @@ class DocAction extends Action
      * @param array $args array of arguments
      *
      * @return nothing
-    */
+     */
     function handle($args)
     {
         parent::handle($args);
@@ -73,7 +71,7 @@ class DocAction extends Action
      * Display content.
      * 
      * @return nothing
-    */
+     */
     function showContent()
     {
         $c      = file_get_contents($this->filename);
@@ -85,7 +83,7 @@ class DocAction extends Action
      * Page title.
      * 
      * @return page title
-    */
+     */
     function title()
     {
         return ucfirst($this->title);