Skip to content

Commit 828ba66

Browse files
committed
minor symfony#32632 [HttpFoundation] Fix URLs (Arman-Hosseini)
This PR was squashed before being merged into the 3.4 branch (closes symfony#32632). Discussion ---------- [HttpFoundation] Fix URLs | Q | A | ------------- | --- | Branch? | 3.4 <!-- see below --> | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | N/A <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | N/A <!-- required for new features --> <!-- Replace this notice by a short README for your feature/bugfix. This will help people understand your PR and can be used as a start for the documentation. Additionally (see https://symfony.com/roadmap): - Bug fixes must be submitted against the lowest maintained branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too). - Features and deprecations must be submitted against branch 4.4. - Legacy code removals go to the master branch. --> Commits ------- be53c59 [HttpFoundation] Fix URLs
2 parents b8d03ca + be53c59 commit 828ba66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MongoDbSessionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author Markus Bachmann <markus.bachmann@bachi.biz>
1818
*
1919
* @see https://packagist.org/packages/mongodb/mongodb
20-
* @see http://php.net/manual/en/set.mongodb.php
20+
* @see https://php.net/mongodb
2121
*/
2222
class MongoDbSessionHandler extends AbstractSessionHandler
2323
{

src/Symfony/Component/HttpFoundation/Session/Storage/Handler/NativeFileSessionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class NativeFileSessionHandler extends NativeSessionHandler
2323
* Default null will leave setting as defined by PHP.
2424
* '/path', 'N;/path', or 'N;octal-mode;/path
2525
*
26-
* @see http://php.net/session.configuration.php#ini.session.save-path for further details.
26+
* @see https://php.net/manual/session.configuration.php#ini.session.save-path for further details.
2727
*
2828
* @throws \InvalidArgumentException On invalid $savePath
2929
* @throws \RuntimeException When failing to create the save directory

0 commit comments

Comments
 (0)