28 lines
484 B
PHP
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()
|
|
{
|
|
}
|
|
}
|