Skip to content

Commit 8a2dd32

Browse files
committed
[FrameworkBundle] Deprecate session.storage service
1 parent bf50adc commit 8a2dd32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

session.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1843,8 +1843,8 @@ the example below:
18431843
https://symfony.com/schema/dic/services/services-1.0.xsd">
18441844
18451845
<framework:config>
1846-
<framework:session storage-id="session.storage.php_bridge"
1847-
handler-id="session.storage.native_file"
1846+
<framework:session storage-id="session.storage.factory.php_bridge"
1847+
handler-id="session.handler.native_file"
18481848
/>
18491849
</framework:config>
18501850
</container>
@@ -1857,7 +1857,7 @@ the example below:
18571857
return static function (FrameworkConfig $framework): void {
18581858
$framework->session()
18591859
->storageFactoryId('session.storage.factory.php_bridge')
1860-
->handlerId('session.storage.native_file')
1860+
->handlerId('session.handler.native_file')
18611861
;
18621862
};
18631863

0 commit comments

Comments
 (0)