monitoring: Fix PHPDoc in DeleteCommentsCommandForm
This commit is contained in:
parent
36a5ec3e17
commit
f6ec028627
|
@ -20,8 +20,7 @@ class DeleteCommentsCommandForm extends CommandForm
|
|||
protected $comments;
|
||||
|
||||
/**
|
||||
* (non-PHPDoc)
|
||||
* @see \Zend_Form::init() For the method documentation.
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
|
@ -29,8 +28,7 @@ class DeleteCommentsCommandForm extends CommandForm
|
|||
}
|
||||
|
||||
/**
|
||||
* (non-PHPDoc)
|
||||
* @see \Icinga\Web\Form::createElements() For the method documentation.
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function createElements(array $formData = array())
|
||||
{
|
||||
|
@ -45,8 +43,7 @@ class DeleteCommentsCommandForm extends CommandForm
|
|||
}
|
||||
|
||||
/**
|
||||
* (non-PHPDoc)
|
||||
* @see \Icinga\Web\Form::getSubmitLabel() For the method documentation.
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getSubmitLabel()
|
||||
{
|
||||
|
@ -54,8 +51,7 @@ class DeleteCommentsCommandForm extends CommandForm
|
|||
}
|
||||
|
||||
/**
|
||||
* (non-PHPDoc)
|
||||
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onSuccess()
|
||||
{
|
||||
|
@ -76,9 +72,9 @@ class DeleteCommentsCommandForm extends CommandForm
|
|||
/**
|
||||
* Set the comments to be deleted upon success
|
||||
*
|
||||
* @param array $comments
|
||||
* @param array $comments
|
||||
*
|
||||
* @return this fluent interface
|
||||
* @return $this
|
||||
*/
|
||||
public function setComments(array $comments)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue