Sokil\Mongo\Queue::clear PHP Method

clear() public method

Clear queue
public clear ( ) : Queue
return Queue
    public function clear()
    {
        $this->collection->delete();
        return $this;
    }

Usage Example

Example #1
0
 public function tearDown()
 {
     $this->queue->clear();
 }