Web\CoworkerBundleというバンドルがあります。DIC / Configuration.phpには、次のものがあります。
$rootNode = $treeBuilder->root('web_coworker');
$rootNode
->children()
->scalarNode('redirect_url')->defaultNull()->end()
->end();
config.ymlには次のものがあります:
web_coworker:
redirect_url: "http://www.example.com/"
今私のDefaultController.phpで、私はします
return array(
'url' => $this->container->getParameter('redirect_url')
);
エラーが発生します
パラメータ「redirect_url」を定義する必要があります。
私は何かが恋しいですか?