* @since 2.0 */ class Command extends Component { /** * @var Connection the Mongo connection that this command is associated with */ public $db; /** * Drop the current database */ public function dropDb() { $this->db->db->drop(); } }