sterntours/vendor/sensio/framework-extra-bundle/Tests/Routing/Fixtures/FoobarController.php
2020-07-09 12:49:32 +02:00

28 lines
484 B
PHP

<?php
namespace Sensio\Bundle\FrameworkExtraBundle\Tests\Routing\Fixtures;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
/**
* @Route("/base")
* @Method("GET")
*/
class FoobarController
{
/**
* @Route("/", name="index")
*/
public function indexAction()
{
}
/**
* @Route("/new", name="new")
* @Method("POST")
*/
public function newAction()
{
}
}