Skip to content

Commit ef20376

Browse files
committed
Remove unnecessary phpdoc tags
1 parent 398a2a8 commit ef20376

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

src/Client.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,6 @@ public function dropDatabase(string $databaseName, array $options = [])
254254
* invoking this method.
255255
*
256256
* @see Collection::__construct() for supported options
257-
* @param string $databaseName Name of the database containing the collection
258-
* @param string $collectionName Name of the collection to select
259-
* @param array $options Collection constructor options
260257
* @throws InvalidArgumentException for parameter/option parsing errors
261258
*/
262259
public function getCollection(string $databaseName, string $collectionName, array $options = []): Collection
@@ -272,9 +269,6 @@ public function getCollection(string $databaseName, string $collectionName, arra
272269
* If the database does not exist on the server, it is not created when
273270
* invoking this method.
274271
*
275-
* @param string $databaseName Name of the database to select
276-
* @param array $options Database constructor options
277-
* @throws InvalidArgumentException for parameter/option parsing errors
278272
* @see Database::__construct() for supported options
279273
*/
280274
public function getDatabase(string $databaseName, array $options = []): Database

src/Database.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,10 +428,8 @@ public function dropCollection(string $collectionName, array $options = [])
428428
* If the collection does not exist in the database, it is not created when
429429
* invoking this method.
430430
*
431-
* @param string $collectionName Name of the collection to select
432-
* @param array $options Collection constructor options
433-
* @throws InvalidArgumentException for parameter/option parsing errors
434431
* @see Collection::__construct() for supported options
432+
* @throws InvalidArgumentException for parameter/option parsing errors
435433
*/
436434
public function getCollection(string $collectionName, array $options = []): Collection
437435
{

0 commit comments

Comments
 (0)