Commit b6a120e0 authored by Jeremy Mikola's avatar Jeremy Mikola

PHPLIB-71: Prototypes for collection drop methods

parent b51e1b3c
...@@ -95,6 +95,16 @@ class Collection ...@@ -95,6 +95,16 @@ class Collection
// TODO // TODO
} }
/**
* Drop this collection.
*
* @return Result
*/
public function drop()
{
// TODO
}
/** /**
* Drop a single index in the collection. * Drop a single index in the collection.
* *
......
...@@ -57,6 +57,17 @@ class Database ...@@ -57,6 +57,17 @@ class Database
// TODO // TODO
} }
/**
* Drop a collection within this database.
*
* @param string $collectionName
* @return Result
*/
public function dropCollection($collectionName)
{
// TODO
}
/** /**
* Select a specific collection in this database * Select a specific collection in this database
* *
......
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