Thomas Gelf 8fd60b87c0 SimpleController: remove functionality...
...as it is implemented elsewhere
2017-07-14 13:21:42 +02:00

15 lines
338 B
PHP

<?php
namespace Icinga\Module\Director\Web\Controller;
use Icinga\Module\Director\Web\Controller\Extension\DirectorDb;
use Icinga\Module\Director\Web\Controller\Extension\QuickSearch;
use ipl\Web\CompatController;
// TODO: Delete me
abstract class SimpleController extends CompatController
{
use DirectorDb;
use QuickSearch;
}