icingaweb2/modules/doc/application/controllers/IndexController.php

22 lines
384 B
PHP

<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Module\Doc\Controllers;
use Icinga\Module\Doc\DocController;
/**
* Documentation module index
*/
class IndexController extends DocController
{
/**
* Documentation module landing page
*
* Lists documentation links
*/
public function indexAction()
{
}
}