市区町村のデフォルト値を「ABC」に設定したいのですが、このコードでそれを行うにはどうすればよいですか? また、このコレクションに複数のルートを追加する例はありますか?
<?php
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;
$collection = new RouteCollection();
$collection->add('hello_world_first_homepage', new Route('/weather/{city}', array(
'_controller' => 'HelloWorldFirstBundle:Default:index',
)));
return $collection;