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

22 lines
384 B
PHP
Raw Normal View History

2013-10-16 14:45:23 +02:00
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
2013-10-16 14:45:23 +02:00
namespace Icinga\Module\Doc\Controllers;
use Icinga\Module\Doc\DocController;
2013-10-16 14:45:23 +02:00
2015-08-27 14:38:36 +02:00
/**
* Documentation module index
*/
class IndexController extends DocController
2013-10-16 14:45:23 +02:00
{
2015-08-27 14:38:36 +02:00
/**
* Documentation module landing page
*
* Lists documentation links
*/
public function indexAction()
{
}
2013-10-16 14:45:23 +02:00
}