tiny phpdoc fixes

This commit is contained in:
Robin Millette 2009-01-20 20:44:03 +00:00
parent 5abdf8aae1
commit 1526432842
1 changed files with 4 additions and 6 deletions

View File

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