File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ Symfony provides the following env var processors:
396396 // config/packages/framework.php
397397 $container->setParameter('env(PHP_FILE)', '../config/.runtime-evaluated.php');
398398 $container->loadFromExtension('app', [
399- 'auth' => '%env(require:AUTH_FILE )%',
399+ 'auth' => '%env(require:PHP_FILE )%',
400400 ]);
401401
402402 ``env(trim:FOO) ``
Original file line number Diff line number Diff line change @@ -1232,9 +1232,14 @@ storage_id
12321232
12331233**type **: ``string `` **default **: ``'session.storage.native' ``
12341234
1235- The service id used for session storage . The ``session.storage `` service
1236- alias will be set to this service id. This class has to implement
1235+ The service ID used for storing the session . The ``session.storage `` service
1236+ alias will be set to this service. The class has to implement
12371237:class: `Symfony\\ Component\\ HttpFoundation\\ Session\\ Storage\\ SessionStorageInterface `.
1238+ To see a list of all available storages, run:
1239+
1240+ .. code-block :: terminal
1241+
1242+ $ php bin/console debug:container session.storage.
12381243
12391244 .. _config-framework-session-handler-id :
12401245
You can’t perform that action at this time.
0 commit comments