monitoring: Fix PHPDoc in DeleteCommentsCommandForm

This commit is contained in:
Eric Lippmann 2015-07-28 12:20:17 +02:00
parent 36a5ec3e17
commit f6ec028627

View File

@ -20,8 +20,7 @@ class DeleteCommentsCommandForm extends CommandForm
protected $comments; protected $comments;
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \Zend_Form::init() For the method documentation.
*/ */
public function init() public function init()
{ {
@ -29,8 +28,7 @@ class DeleteCommentsCommandForm extends CommandForm
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \Icinga\Web\Form::createElements() For the method documentation.
*/ */
public function createElements(array $formData = array()) public function createElements(array $formData = array())
{ {
@ -45,8 +43,7 @@ class DeleteCommentsCommandForm extends CommandForm
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \Icinga\Web\Form::getSubmitLabel() For the method documentation.
*/ */
public function getSubmitLabel() public function getSubmitLabel()
{ {
@ -54,8 +51,7 @@ class DeleteCommentsCommandForm extends CommandForm
} }
/** /**
* (non-PHPDoc) * {@inheritdoc}
* @see \Icinga\Web\Form::onSuccess() For the method documentation.
*/ */
public function onSuccess() public function onSuccess()
{ {
@ -78,7 +74,7 @@ class DeleteCommentsCommandForm extends CommandForm
* *
* @param array $comments * @param array $comments
* *
* @return this fluent interface * @return $this
*/ */
public function setComments(array $comments) public function setComments(array $comments)
{ {