Skip to content

Commit 368a5e1

Browse files
Merge branch '6.4' into 7.2
* 6.4: Fix php.net links [DoctrineBridge] Restore compatibility with Doctrine ODM by validating $class object type [FrameworkBundle] Add functional tests for the `ContainerLintCommand` command Fix precision loss when rounding large integers in `NumberToLocalizedStringTransformer`
2 parents dc58f94 + 95f9645 commit 368a5e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Session/Storage/NativeSessionStorage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function start(): bool
123123
* ---------- Part 1
124124
*
125125
* The part `[a-zA-Z0-9,-]` is related to the PHP ini directive `session.sid_bits_per_character` defined as 6.
126-
* See https://www.php.net/manual/en/session.configuration.php#ini.session.sid-bits-per-character.
126+
* See https://php.net/session.configuration#ini.session.sid-bits-per-character
127127
* Allowed values are integers such as:
128128
* - 4 for range `a-f0-9`
129129
* - 5 for range `a-v0-9` (@deprecated since Symfony 7.2, it will default to 4 and the option will be ignored in Symfony 8.0)
@@ -132,7 +132,7 @@ public function start(): bool
132132
* ---------- Part 2
133133
*
134134
* The part `{22,250}` is related to the PHP ini directive `session.sid_length`.
135-
* See https://www.php.net/manual/en/session.configuration.php#ini.session.sid-length.
135+
* See https://php.net/session.configuration#ini.session.sid-length
136136
* Allowed values are integers between 22 and 256, but we use 250 for the max.
137137
*
138138
* Where does the 250 come from?

0 commit comments

Comments
 (0)