Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions source/reference/method/MongoDBClient__construct.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ Parameters
'root' => 'MongoDB\Model\BSONDocument',
]

* - builderEncoder
- MongoDB\\Codec\\Encoder
- Encoder to use for query and aggregation builders. If not set, this option
defaults to a new instance of the ``MongoDB\Builder\BuilderEncoder`` class.

* - allow_invalid_hostname
- boolean
- Disables hostname validation if ``true``. Defaults to ``false``.
Expand Down
5 changes: 5 additions & 0 deletions source/reference/method/MongoDBCollection__construct.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ Definition
- Type
- Description

* - builderEncoder
- MongoDB\\Codec\\Encoder
- Encoder to use for query and aggregation builders. If not set, this option
defaults to a new instance of the ``MongoDB\Builder\BuilderEncoder`` class.

* - codec
- MongoDB\\Codec\\DocumentCodec
- The default :doc:`codec </data-formats/codecs>` to use for collection
Expand Down
5 changes: 5 additions & 0 deletions source/reference/method/MongoDBDatabase__construct.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ Parameters
- Type
- Description

* - builderEncoder
- MongoDB\\Codec\\Encoder
- Encoder to use for query and aggregation builders. If not set, this option
defaults to a new instance of the ``MongoDB\Builder\BuilderEncoder`` class.

* - readConcern
- :php:`MongoDB\Driver\ReadConcern <class.mongodb-driver-readconcern>`
- The default read concern to use for database operations. Defaults to
Expand Down
Loading