mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-03 06:10:18 +02:00
19 lines
373 B
PHP
19 lines
373 B
PHP
<?php
|
|
// @codingStandardsIgnoreStart
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use Icinga\Module\Doc\Controller as DocController;
|
|
|
|
class Doc_IndexController extends DocController
|
|
{
|
|
/**
|
|
* Display the application's documentation
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
$this->populateView();
|
|
}
|
|
}
|
|
// @codingStandardsIgnoreEnd
|