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

Commit 4d803fe

Browse files
committed
Use single quotes and project_dir parameter
1 parent e53c040 commit 4d803fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/config/config.yml

Lines changed: 2 additions & 2 deletions
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: ~

app/config/config_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ imports:
33

44
framework:
55
router:
6-
resource: '%kernel.root_dir%/config/routing_dev.yml'
6+
resource: '%kernel.project_dir%/app/config/routing_dev.yml'
77
strict_requirements: true
88
profiler: { only_exceptions: false }
99

0 commit comments

Comments
 (0)