@@ -513,7 +513,7 @@ a Symfony service for the connection to the Redis server:
513
513
# uncomment the following if your Redis server requires a password
514
514
# - auth:
515
515
# - '%env(REDIS_PASSWORD)%'
516
-
516
+
517
517
# uncomment the following if your Redis server requires a user and a password (when user is not default)
518
518
# - auth:
519
519
# - ['%env(REDIS_USER)%','%env(REDIS_PASSWORD)%']
@@ -677,7 +677,7 @@ To use it, first register a new handler service with your database credentials:
677
677
https://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
678
678
679
679
<services >
680
- <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler" public = " false " >
680
+ <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler" >
681
681
<argument >%env(DATABASE_URL)%</argument >
682
682
683
683
<!-- you can also use PDO configuration, but requires passing two arguments: -->
@@ -697,8 +697,8 @@ To use it, first register a new handler service with your database credentials:
697
697
698
698
use Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler;
699
699
700
- return static function (ContainerConfigurator $container ) {
701
- $services = $configurator ->services();
700
+ return static function (ContainerConfigurator $containerConfiguratorConfigurator ) {
701
+ $services = $containerConfigurator ->services();
702
702
703
703
$services->set(PdoSessionHandler::class)
704
704
->args([
@@ -795,7 +795,7 @@ passed to the ``PdoSessionHandler`` service:
795
795
https://symfony.com/schema/dic/services/services-1.0.xsd" >
796
796
797
797
<services >
798
- <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler" public = " false " >
798
+ <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler" >
799
799
<argument >%env(DATABASE_URL)%</argument >
800
800
<argument type =" collection" >
801
801
<argument key =" db_table" >customer_session</argument >
@@ -812,8 +812,8 @@ passed to the ``PdoSessionHandler`` service:
812
812
813
813
use Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler;
814
814
815
- return static function (ContainerConfigurator $container ) {
816
- $services = $configurator ->services();
815
+ return static function (ContainerConfigurator $containerConfiguratorConfigurator ) {
816
+ $services = $containerConfigurator ->services();
817
817
818
818
$services->set(PdoSessionHandler::class)
819
819
->args([
@@ -972,7 +972,7 @@ the MongoDB connection as argument:
972
972
https://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
973
973
974
974
<services >
975
- <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler" public = " false " >
975
+ <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler" >
976
976
<argument type =" service" >doctrine_mongodb.odm.default_connection</argument >
977
977
</service >
978
978
</services >
@@ -985,8 +985,8 @@ the MongoDB connection as argument:
985
985
986
986
use Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler;
987
987
988
- return static function (ContainerConfigurator $container ) {
989
- $services = $configurator ->services();
988
+ return static function (ContainerConfigurator $containerConfiguratorConfigurator ) {
989
+ $services = $containerConfigurator ->services();
990
990
991
991
$services->set(MongoDbSessionHandler::class)
992
992
->args([
@@ -1087,7 +1087,7 @@ configure these values with the second argument passed to the
1087
1087
https://symfony.com/schema/dic/services/services-1.0.xsd" >
1088
1088
1089
1089
<services >
1090
- <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler" public = " false " >
1090
+ <service id =" Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler" >
1091
1091
<argument type =" service" >doctrine_mongodb.odm.default_connection</argument >
1092
1092
<argument type =" collection" >
1093
1093
<argument key =" id_field" >_guid</argument >
@@ -1104,8 +1104,8 @@ configure these values with the second argument passed to the
1104
1104
1105
1105
use Symfony\Component\HttpFoundation\Session\Storage\Handler\MongoDbSessionHandler;
1106
1106
1107
- return static function (ContainerConfigurator $container ) {
1108
- $services = $configurator ->services();
1107
+ return static function (ContainerConfigurator $containerConfigurator ) {
1108
+ $services = $containerConfigurator ->services();
1109
1109
1110
1110
$services->set(MongoDbSessionHandler::class)
1111
1111
->args([
0 commit comments