summaryrefslogtreecommitdiff
path: root/actions/doc.php
diff options
context:
space:
mode:
authorRobin Millette <millette@plantard.controlezvous.ca>2009-01-20 20:44:03 +0000
committerRobin Millette <millette@plantard.controlezvous.ca>2009-01-20 20:44:03 +0000
commit15264328420839c5ec3951f306169f5640037bce (patch)
tree231cb5c77adaa3f1375fa6bf06d41c9909903d53 /actions/doc.php
parent5abdf8aae19ecdf3e5f5f8b7ecb09c128667587d (diff)
tiny phpdoc fixes
Diffstat (limited to 'actions/doc.php')
-rw-r--r--actions/doc.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/actions/doc.php b/actions/doc.php
index fd48ac110..aaf006f07 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -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);