<?php
/**
* Eventfix - RootController.php
* --------------------------------------------------------------------------
* Created by: mhs
* Created on: 12.10.2020
* --------------------------------------------------------------------------
* Copyright (c) 2020 | Michael Hack Software e.K. | www.mh-s.de
*/
namespace App\Controller;
use App\Controller\Backend\SecurityController;
use App\Base\Controller;
class RootController extends Controller {
/**
* Startseite
* -> Umleitung auf www.eventfix.de
*
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function index() {
return $this->redirect("https://www.eventfix.de");
}
}