File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -795,7 +795,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
795
795
- ['%env(base64:CACHE_DECRYPTION_KEY)%']
796
796
# use multiple keys in order to rotate them
797
797
# - ['%env(base64:CACHE_DECRYPTION_KEY)%', '%env(base64:OLD_CACHE_DECRYPTION_KEY)%']
798
- - ' @Symfony\Component\Cache\Marshaller\SodiumMarshaller .inner'
798
+ - ' @.inner'
799
799
800
800
.. code-block :: xml
801
801
@@ -818,7 +818,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
818
818
<!-- use multiple keys in order to rotate them -->
819
819
<!-- <argument>env(base64:OLD_CACHE_DECRYPTION_KEY)</argument> -->
820
820
</argument >
821
- <argument type =" service" id =" Symfony\Component\Cache\Marshaller\SodiumMarshaller .inner" />
821
+ <argument type =" service" id =" .inner" />
822
822
</service >
823
823
</services >
824
824
</container >
@@ -835,7 +835,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
835
835
->addArgument(['env(base64:CACHE_DECRYPTION_KEY)'])
836
836
// use multiple keys in order to rotate them
837
837
//->addArgument(['env(base64:CACHE_DECRYPTION_KEY)', 'env(base64:OLD_CACHE_DECRYPTION_KEY)'])
838
- ->addArgument(new Reference(SodiumMarshaller::class. '.inner'));
838
+ ->addArgument(new Reference('.inner'));
839
839
840
840
.. caution ::
841
841
Original file line number Diff line number Diff line change @@ -1515,7 +1515,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
1515
1515
decorates : ' session.marshaller'
1516
1516
arguments :
1517
1517
- ['%env(file:resolve:SESSION_DECRYPTION_FILE)%']
1518
- - ' @Symfony\Component\Cache\Marshaller\SodiumMarshaller .inner'
1518
+ - ' @.inner'
1519
1519
1520
1520
.. code-block :: xml
1521
1521
@@ -1531,7 +1531,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
1531
1531
<argument type =" collection" >
1532
1532
<argument >env(file:resolve:SESSION_DECRYPTION_FILE)</argument >
1533
1533
</argument >
1534
- <argument type =" service" id =" Symfony\Component\Cache\Marshaller\SodiumMarshaller .inner" />
1534
+ <argument type =" service" id =" .inner" />
1535
1535
</service >
1536
1536
</services >
1537
1537
</container >
@@ -1552,7 +1552,7 @@ Then, register the ``SodiumMarshaller`` service using this key:
1552
1552
->decorate('session.marshaller')
1553
1553
->args([
1554
1554
[env('file:resolve:SESSION_DECRYPTION_FILE')],
1555
- service(SodiumMarshaller::class. '.inner'),
1555
+ service('.inner'),
1556
1556
]);
1557
1557
};
1558
1558
You can’t perform that action at this time.
0 commit comments