// MySomethingController.php
// look no s
public function getSomethingAction($args)
{
...
}
// ルーティング.yml
my_something:
type: rest
resource: Blah\Bundle\BlahBundle\Controller\MySomethingController
ランニング:
php app/console router:debug
出力:
[router] Current routes
Name Method Pattern
get_something GET /somethings/{args}.{_format}
ルートが「something」ではなく「somethings」(「s」を含む複数形) になっているのはなぜですか?
これは私がどこかに持っている設定ですか?またはこれは予想されますか?