Here is the case. My config.yml contains fallowing set:
...
framework:
#esi: ~
translator: { fallbacks: ["%locale%"] }
secret: "%secret%"
router:
resource: "%kernel.root_dir%/config/routing.yml"
strict_requirements: ~
form: ~
csrf_protection: ~
validation: { enable_annotations: true }
templating:
engines: ['twig']
#assets_version: SomeVersionScheme
default_locale: "%locale%"
...
I am trying to access value of default_locale in my controller with:
...
$this->container->getParameter('framework.default_locale');
...
But it wont work... Any idea why it prompts me that this value is not defined?
Regards