Mongolid\Cursor\CacheableCursor::serialize PHP Method

serialize() public method

Serializes this object. Drops the unserializable DriverCursor. In order to make the CacheableCursor object serializable.
public serialize ( ) : string
return string Serialized object.
    public function serialize()
    {
        $this->documents = $this->cursor = null;
        return parent::serialize();
    }