infinito/application/src/Controller/LawController.php

36 lines
832 B
PHP
Raw Normal View History

2018-10-03 18:20:53 +02:00
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\Routing\Annotation\Route;
/**
*
* @author kevinfrantz
*
*/
class LawController extends AbstractController
{
/**
* @Route("/law/{id}.{_format}", defaults={"_format"="html"})
*/
public function show():Response{
//Implement
}
/**
* @Route("/law/{id}/right.{_format}", defaults={"_format"="html"})
*/
public function right(int $id):RedirectResponse{
//Implement
}
/**
* @Route("/law/{id}/node.{_format}", defaults={"_format"="html"})
*/
public function node(int $id):RedirectResponse{
//Implement
}
}