Skip to content

Commit 95f9645

Browse files
benjaminpicknicolas-grekas
authored andcommitted
Fix php.net links
1 parent 452d19f commit 95f9645

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
@@ -139,7 +139,7 @@ public function start(): bool
139139
* ---------- Part 1
140140
*
141141
* The part `[a-zA-Z0-9,-]` is related to the PHP ini directive `session.sid_bits_per_character` defined as 6.
142-
* See https://www.php.net/manual/en/session.configuration.php#ini.session.sid-bits-per-character.
142+
* See https://php.net/session.configuration#ini.session.sid-bits-per-character
143143
* Allowed values are integers such as:
144144
* - 4 for range `a-f0-9`
145145
* - 5 for range `a-v0-9`
@@ -148,7 +148,7 @@ public function start(): bool
148148
* ---------- Part 2
149149
*
150150
* The part `{22,250}` is related to the PHP ini directive `session.sid_length`.
151-
* See https://www.php.net/manual/en/session.configuration.php#ini.session.sid-length.
151+
* See https://php.net/session.configuration#ini.session.sid-length
152152
* Allowed values are integers between 22 and 256, but we use 250 for the max.
153153
*
154154
* Where does the 250 come from?

0 commit comments

Comments
 (0)