intelephense
1.14.41.16.1
lib/stub/mongodb/CursorId.phplib/stub/mongodb/CursorId.php−50
Index: package/lib/stub/mongodb/CursorId.php
===================================================================
--- package/lib/stub/mongodb/CursorId.php
+++ package/lib/stub/mongodb/CursorId.php
@@ -1,50 +0,0 @@
-<?php
-
-namespace MongoDB\Driver;
-
-use MongoDB\Driver\Exception\InvalidArgumentException;
-use MongoDB\Driver\Exception\UnexpectedValueException;
-
-/**
- * Class CursorId
- * @link https://php.net/manual/en/class.mongodb-driver-cursorid.php
- */
-final class CursorId implements \Serializable
-{
- /**
- * Create a new CursorId (not used)
- * CursorId objects are returned from Cursor::getId() and cannot be constructed directly.
- * @link https://php.net/manual/en/mongodb-driver-cursorid.construct.php
- * @see Cursor::getId()
- */
- final private function __construct() {}
-
- /**
- * String representation of the cursor ID
- * @link https://php.net/manual/en/mongodb-driver-cursorid.tostring.php
- * @return string representation of the cursor ID.
- * @throws InvalidArgumentException on argument parsing errors.
- */
- final public function __toString(): string {}
-
- final public function __wakeup() {}
-
- public static function __set_state(array $properties) {}
-
- /**
- * Serialize a CursorId
- * @since 1.7.0
- * @link https://php.net/manual/en/mongodb-driver-cursorid.serialize.php
- * @throws InvalidArgumentException
- */
- final public function serialize(): string {}
-
- /**
- * Unserialize a CursorId
- * @since 1.7.0
- * @link https://php.net/manual/en/mongodb-driver-cursorid.unserialize.php
- * @throws InvalidArgumentException on argument parsing errors or if the properties are invalid
- * @throws UnexpectedValueException if the properties cannot be unserialized (i.e. serialized was malformed)
- */
- final public function unserialize(string $data): void {}
-}