Let StaticController extend Controller instead of ActionController

This commit is contained in:
Eric Lippmann 2015-08-27 14:07:00 +02:00
parent fe3c7ec52b
commit 672c679064

View File

@ -1,7 +1,7 @@
<?php <?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */ /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
use Icinga\Web\Controller\ActionController; use Icinga\Web\Controller;
use Icinga\Application\Icinga; use Icinga\Application\Icinga;
use Icinga\Application\Logger; use Icinga\Application\Logger;
use Icinga\Web\FileCache; use Icinga\Web\FileCache;
@ -10,7 +10,7 @@ use Zend_Controller_Action_Exception as ActionException;
/** /**
* Delivery static content to clients * Delivery static content to clients
*/ */
class StaticController extends ActionController class StaticController extends Controller
{ {
/** /**
* Static routes don't require authentication * Static routes don't require authentication