Commit a46f2762 authored by Jeremy Mikola's avatar Jeremy Mikola

Fix type documentation for Count and Distinct $filter arg

parent f2c10219
...@@ -41,7 +41,7 @@ class Count implements Executable ...@@ -41,7 +41,7 @@ class Count implements Executable
* *
* @param string $databaseName Database name * @param string $databaseName Database name
* @param string $collectionName Collection name * @param string $collectionName Collection name
* @param array $filter Query by which to filter documents * @param array|object $filter Query by which to filter documents
* @param array $options Command options * @param array $options Command options
* @throws InvalidArgumentException * @throws InvalidArgumentException
*/ */
......
...@@ -35,7 +35,7 @@ class Distinct implements Executable ...@@ -35,7 +35,7 @@ class Distinct implements Executable
* @param string $databaseName Database name * @param string $databaseName Database name
* @param string $collectionName Collection name * @param string $collectionName Collection name
* @param string $fieldName Field for which to return distinct values * @param string $fieldName Field for which to return distinct values
* @param array $filter Query by which to filter documents * @param array|object $filter Query by which to filter documents
* @param array $options Command options * @param array $options Command options
* @throws InvalidArgumentException * @throws InvalidArgumentException
*/ */
......
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