LMongo\Query\Builder::truncate PHP Method

truncate() public method

Drop the collection.
public truncate ( ) : void
return void
    public function truncate()
    {
        $result = $this->connection->{$this->collection}->drop();
        if (1 == (int) $result['ok']) {
            return true;
        }
        return false;
    }
Builder