Mongolid\Cursor\CacheableCursor::serialize PHP Méthode

serialize() public méthode

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