Skip to content

Commit

Permalink
[symfony/framework-bundle] Enable session support by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 8, 2018
1 parent 3cb189a commit adf2c2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions symfony/framework-bundle/3.3/config/packages/framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ framework:
#csrf_protection: ~
#http_method_override: true

# uncomment this entire section to enable sessions
#session:
# # With this config, PHP's native session handling is used
# handler_id: ~
# Enables session support. Note that the session will ONLY be started if you read or write from it.
# Remove or comment this section to explicitly disable session support.
session:
handler_id: ~

#esi: ~
#fragments: ~
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
framework:
test: ~
# Uncomment this section if you're using sessions
#session:
# storage_id: session.storage.mock_file
session:
storage_id: session.storage.mock_file

0 comments on commit adf2c2d

Please sign in to comment.