PHPCS BookmarkForm

This commit is contained in:
Evan Prodromou 2010-12-21 10:16:53 -05:00
parent c96faf065d
commit 14babfb900
1 changed files with 36 additions and 23 deletions

View File

@ -52,7 +52,20 @@ class BookmarkForm extends Form
private $_tags = null;
private $_description = null;
function __construct($out=null, $title=null, $url=null, $tags=null, $description=null)
/**
* Construct a bookmark form
*
* @param HTMLOutputter $out output channel
* @param string $title Title of the bookmark
* @param string $url URL of the bookmark
* @param string $tags Tags to show
* @param string $description Description of the bookmark
*
* @return void
*/
function __construct($out=null, $title=null, $url=null, $tags=null,
$description=null)
{
parent::__construct($out);