|
For this block of yaml:
arg_name: option
|
name: autoIndexId
|
type: boolean
|
description: |
|
|
*Default: true*. Specify false to disable the automatic creation of
|
an index on the _id field.
|
|
.. important::
|
|
For replica sets, do not set {{role}} to ``false``.
|
|
.. deprecated:: 3.2. The {{role}} option will be removed in MongoDB v3.4.
|
|
optional: true
|
interface: phpmethod
|
operation: MongoDB\\Database::createCollection
|
position: 1
|
Based on the behavior of the {{role}} replacement in options/settings directives, I would expect {{role}} to be replaced with autoIndexId.
{{role}} is actually replaced with :phpmethod:MongoDB\Database::createCollection.
We should fix that.
|