Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit 841be9d

Browse files
committed
minor #1066 remove deprecated %kernel.root_dir% from config.yml (JarJak)
This PR was squashed before being merged into the 3.3-dev branch (closes #1066). Discussion ---------- remove deprecated %kernel.root_dir% from config.yml From UPGRADE-3.3.md: "Deprecated the kernel.root_dir parameter. Use the new kernel.project_dir parameter instead." Commits ------- 982a8e3 remove deprecated %kernel.root_dir% from config.yml
2 parents e53c040 + 982a8e3 commit 841be9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/config/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ framework:
1313
#translator: { fallbacks: ['%locale%'] }
1414
secret: '%secret%'
1515
router:
16-
resource: '%kernel.root_dir%/config/routing.yml'
16+
resource: '%kernel.project_dir%/app/config/routing.yml'
1717
strict_requirements: ~
1818
form: ~
1919
csrf_protection: ~
@@ -26,7 +26,7 @@ framework:
2626
session:
2727
# http://symfony.com/doc/current/reference/configuration/framework.html#handler-id
2828
handler_id: session.handler.native_file
29-
save_path: "%kernel.root_dir%/../var/sessions/%kernel.environment%"
29+
save_path: "%kernel.project_dir%/var/sessions/%kernel.environment%"
3030
fragments: ~
3131
http_method_override: true
3232
assets: ~

0 commit comments

Comments
 (0)