mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-15 03:47:06 +01:00
18 lines
269 B
PHP
18 lines
269 B
PHP
|
<?php
|
||
|
namespace controller\standart;
|
||
|
|
||
|
use controller\AbstractController;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
final class Standart extends AbstractController
|
||
|
{
|
||
|
public function homepage():void{
|
||
|
$this->render('standart/homepage.html.twig');
|
||
|
}
|
||
|
}
|
||
|
|