Deleted default controller interface

This commit is contained in:
Kevin Frantz 2018-09-13 00:06:21 +02:00
parent bf32608956
commit e31386b908
2 changed files with 1 additions and 18 deletions

View File

@ -10,7 +10,7 @@ use Symfony\Component\HttpFoundation\Response;
* @author kevinfrantz
*
*/
class DefaultController extends AbstractController implements DefaultControllerInterface
class DefaultController extends AbstractController
{
/**
* @Route("/imprint", name="imprint")

View File

@ -1,17 +0,0 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
/**
*
* @author kevinfrantz
*
*/
interface DefaultControllerInterface
{
public function homepage():Response;
public function imprint():Response;
}