Commit cbb7f43a authored by Jeremy Mikola's avatar Jeremy Mikola

Fix language for $databaseName and $collectionName params

parent 1892dc6f
...@@ -3,6 +3,8 @@ source: ...@@ -3,6 +3,8 @@ source:
ref: $databaseName ref: $databaseName
operation: MongoDB\\Client::dropDatabase operation: MongoDB\\Client::dropDatabase
position: 1 position: 1
replacement:
action: " to drop"
--- ---
source: source:
file: apiargs-common-param.yaml file: apiargs-common-param.yaml
......
...@@ -3,4 +3,6 @@ source: ...@@ -3,4 +3,6 @@ source:
ref: $databaseName ref: $databaseName
operation: MongoDB\\Client::__get operation: MongoDB\\Client::__get
position: 1 position: 1
replacement:
action: " to select"
... ...
...@@ -3,12 +3,16 @@ source: ...@@ -3,12 +3,16 @@ source:
ref: $databaseName ref: $databaseName
operation: MongoDB\\Client::selectCollection operation: MongoDB\\Client::selectCollection
position: 1 position: 1
replacement:
action: " containing the collection to select"
--- ---
source: source:
file: apiargs-common-param.yaml file: apiargs-common-param.yaml
ref: $collectionName ref: $collectionName
operation: MongoDB\\Client::selectCollection operation: MongoDB\\Client::selectCollection
position: 2 position: 2
replacement:
action: " to select"
--- ---
source: source:
file: apiargs-common-param.yaml file: apiargs-common-param.yaml
......
...@@ -3,6 +3,8 @@ source: ...@@ -3,6 +3,8 @@ source:
ref: $databaseName ref: $databaseName
operation: MongoDB\\Client::selectDatabase operation: MongoDB\\Client::selectDatabase
position: 1 position: 1
replacement:
action: " to select"
--- ---
source: source:
file: apiargs-common-param.yaml file: apiargs-common-param.yaml
......
...@@ -2,24 +2,24 @@ arg_name: param ...@@ -2,24 +2,24 @@ arg_name: param
name: $databaseName name: $databaseName
type: string type: string
description: | description: |
The name of the database{{select}}. The name of the database{{action}}.
interface: phpmethod interface: phpmethod
operation: selectCollection operation: selectCollection
optional: false optional: false
replacement: replacement:
select: " to select" action: ""
position: 1 position: 1
--- ---
arg_name: param arg_name: param
name: $collectionName name: $collectionName
type: string type: string
description: | description: |
The name of the collection{{select}}. The name of the collection{{action}}.
interface: phpmethod interface: phpmethod
operation: selectCollection operation: selectCollection
optional: false optional: false
replacement: replacement:
select: " to select" action: ""
position: 2 position: 2
--- ---
arg_name: param arg_name: param
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment