Format code

This commit is contained in:
Marco Petersen
2018-09-12 23:25:22 +03:00
parent 60119c5b1b
commit f1b9ffd160
40 changed files with 257 additions and 301 deletions

View File

@@ -1,4 +1,5 @@
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
@@ -6,9 +7,7 @@ use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
/**
*
* @author kevinfrantz
*
*/
class DefaultController extends AbstractController implements DefaultControllerInterface
{
@@ -17,15 +16,14 @@ class DefaultController extends AbstractController implements DefaultControllerI
*/
public function imprint(): Response
{
return $this->render("standard/imprint.html.twig");
return $this->render('standard/imprint.html.twig');
}
/**
* @Route("/", name="homepage")
*/
public function homepage(): Response
{
return $this->render("standard/homepage.html.twig");
return $this->render('standard/homepage.html.twig');
}
}