18 lines
298 B
PHP
Raw Normal View History

2018-07-14 17:48:24 +02:00
<?php
namespace controller\standart;
use controller\AbstractController;
/**
*
* @author kevinfrantz
*
*/
2018-07-14 18:50:47 +02:00
final class Standart extends AbstractController implements StandartInterface
2018-07-14 17:48:24 +02:00
{
public function homepage():void{
$this->render('standart/homepage.html.twig');
}
}