Fix doc blocks in LoggingConfigForm
This commit is contained in:
parent
f3630bb58f
commit
74820de9ea
|
@ -6,10 +6,15 @@ namespace Icinga\Forms\Config\General;
|
||||||
use Icinga\Application\Logger;
|
use Icinga\Application\Logger;
|
||||||
use Icinga\Web\Form;
|
use Icinga\Web\Form;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configuration form for logging options
|
||||||
|
*
|
||||||
|
* This form is not used directly but as subform for the {@link GeneralConfigForm}.
|
||||||
|
*/
|
||||||
class LoggingConfigForm extends Form
|
class LoggingConfigForm extends Form
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Initialize this form
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
|
@ -17,8 +22,9 @@ class LoggingConfigForm extends Form
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (non-PHPDoc)
|
* {@inheritdoc}
|
||||||
* @see Form::createElements() For the method documentation.
|
*
|
||||||
|
* @return $this
|
||||||
*/
|
*/
|
||||||
public function createElements(array $formData)
|
public function createElements(array $formData)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue