minor #42230 [HttpFoundation] update phpdoc to recommend createIndex over ensureIndex (kralos)

This PR was merged into the 4.4 branch.

Discussion
----------

[HttpFoundation] update phpdoc to recommend createIndex over ensureIndex

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | no - kinda (phpdoc only fix)
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #42229
| License       | MIT
| Doc PR        | https://github.com/symfony/symfony-docs/pull/15548

Updated PHPDoc to recommend using `createIndex` instead of `ensureIndex`. `ensureIndex` was deprecated in `mongodb 3.0.0` and removed in `mongodb 5.0.0`

Commits
-------

05d8ca1046 #42229 update phpdoc to recommend createIndex over ensureIndex
This commit is contained in:
Nicolas Grekas 2021-07-22 09:31:22 +02:00
commit a7642f738a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class MongoDbSessionHandler extends AbstractSessionHandler
* A TTL collections can be used on MongoDB 2.2+ to cleanup expired sessions
* automatically. Such an index can for example look like this:
*
* db.<session-collection>.ensureIndex(
* db.<session-collection>.createIndex(
* { "<expiry-field>": 1 },
* { "expireAfterSeconds": 0 }
* )