Skip to content

Commit ba3c846

Browse files
committed
Merge branch '7.2' into 7.3
* 7.2: [FrameworkBundle] Deprecate session.storage service
2 parents cb385c0 + a9824e8 commit ba3c846

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
@@ -1852,8 +1852,8 @@ the example below:
18521852
https://symfony.com/schema/dic/services/services-1.0.xsd">
18531853
18541854
<framework:config>
1855-
<framework:session storage-id="session.storage.php_bridge"
1856-
handler-id="session.storage.native_file"
1855+
<framework:session storage-id="session.storage.factory.php_bridge"
1856+
handler-id="session.handler.native_file"
18571857
/>
18581858
</framework:config>
18591859
</container>
@@ -1866,7 +1866,7 @@ the example below:
18661866
return static function (FrameworkConfig $framework): void {
18671867
$framework->session()
18681868
->storageFactoryId('session.storage.factory.php_bridge')
1869-
->handlerId('session.storage.native_file')
1869+
->handlerId('session.handler.native_file')
18701870
;
18711871
};
18721872

0 commit comments

Comments
 (0)