mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-06 15:50:10 +02:00
16 lines
317 B
PHP
16 lines
317 B
PHP
<?php
|
|
// @codingStandardsIgnoreStart
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
use Icinga\Web\Controller\ActionController;
|
|
|
|
class Doc_IndexController extends ActionController
|
|
{
|
|
public function indexAction()
|
|
{
|
|
$this->_forward('index', 'view');
|
|
}
|
|
}
|
|
// @codingStandardsIgnoreEnd
|