We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b51e1b3 commit b6a120eCopy full SHA for b6a120e
src/Collection.php
@@ -95,6 +95,16 @@ public function createIndexes(array $models)
95
// TODO
96
}
97
98
+ /**
99
+ * Drop this collection.
100
+ *
101
+ * @return Result
102
+ */
103
+ public function drop()
104
+ {
105
+ // TODO
106
+ }
107
+
108
/**
109
* Drop a single index in the collection.
110
*
src/Database.php
@@ -57,6 +57,17 @@ public function drop()
57
58
59
60
61
+ * Drop a collection within this database.
62
63
+ * @param string $collectionName
64
65
66
+ public function dropCollection($collectionName)
67
68
69
70
71
72
* Select a specific collection in this database
73
0 commit comments