[CORE][ROUTES] Example route

This commit is contained in:
Hugo Sales
2020-03-12 17:59:13 +00:00
committed by Hugo Sales
parent 5ec23f2200
commit c0e53ae658
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use App;
class NetworkPublic extends AbstractController
{
public function __invoke()
{
return $this->render('network/public.html.twig', []);
}
}