php-south-wales-ansible-wor.../src/Controller/HomeController.php
2019-11-26 07:03:54 +00:00

19 lines
397 B
PHP

<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
class HomeController extends AbstractController
{
/**
* @Route("/", name="home")
*/
public function index()
{
return $this->render('index.html.twig', [
'eventName' => 'PHP South Wales',
]);
}
}