apiargs-common-param.yaml 871 Bytes
Newer Older
1
arg_name: param
2 3 4 5 6 7 8 9 10 11
name: $manager
type: :php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>`
description: |
  The :php:`Manager <mongodb-driver-manager>` instance from the driver. The
  manager maintains connections between the driver and your MongoDB instances.
interface: phpmethod
operation: ~
optional: false
---
arg_name: param
12 13 14
name: $databaseName
type: string
description: |
15
  The name of the database{{action}}.
16
interface: phpmethod
17
operation: ~
18 19
optional: false
replacement:
20
  action: ""
21 22 23 24 25
---
arg_name: param
name: $collectionName
type: string
description: |
26
  The name of the {{subject}}{{action}}.
27
interface: phpmethod
28
operation: ~
29 30
optional: false
replacement:
31
  subject: "collection"
32
  action: ""
33 34 35 36 37 38 39
---
arg_name: param
name: $options
type: array
description: |
  An array specifying the desired options.
interface: phpmethod
40
operation: ~
41 42
optional: true
...