src/Controller/RootController.php line 24

Open in your IDE?
  1. <?php
  2. /**
  3.  * Eventfix - RootController.php
  4.  * --------------------------------------------------------------------------
  5.  * Created by: mhs
  6.  * Created on: 12.10.2020
  7.  * --------------------------------------------------------------------------
  8.  * Copyright (c) 2020 | Michael Hack Software e.K. | www.mh-s.de
  9.  */
  10. namespace App\Controller;
  11. use App\Controller\Backend\SecurityController;
  12. use App\Base\Controller;
  13. class RootController extends Controller {
  14.     /**
  15.      * Startseite
  16.      * -> Umleitung auf www.eventfix.de
  17.      *
  18.      * @return \Symfony\Component\HttpFoundation\RedirectResponse
  19.      */
  20.     public function index() {
  21.         return $this->redirect("https://www.eventfix.de");
  22.     }
  23. }