Skip to content

Commit bca218f

Browse files
committed
Add missing use statements for UnsupportedException
1 parent 83eb398 commit bca218f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Operation/DropCollection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use MongoDB\Driver\WriteConcern;
88
use MongoDB\Driver\Exception\RuntimeException;
99
use MongoDB\Exception\InvalidArgumentException;
10+
use MongoDB\Exception\UnsupportedException;
1011

1112
/**
1213
* Operation for the drop command.

src/Operation/DropDatabase.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use MongoDB\Driver\Server;
77
use MongoDB\Driver\WriteConcern;
88
use MongoDB\Exception\InvalidArgumentException;
9+
use MongoDB\Exception\UnsupportedException;
910

1011
/**
1112
* Operation for the dropDatabase command.

src/Operation/DropIndexes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use MongoDB\Driver\Server;
77
use MongoDB\Driver\WriteConcern;
88
use MongoDB\Exception\InvalidArgumentException;
9+
use MongoDB\Exception\UnsupportedException;
910

1011
/**
1112
* Operation for the dropIndexes command.

0 commit comments

Comments
 (0)