mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Format code
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user