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