From 21d78c0ede4f3637039eca0513e1bada76626ea8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 9 Aug 2016 12:05:23 +0200 Subject: php-pecl-mongodb: 1.2.0alpha1 reflection file --- REFLECTION-DEV | 1924 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1924 insertions(+) create mode 100644 REFLECTION-DEV diff --git a/REFLECTION-DEV b/REFLECTION-DEV new file mode 100644 index 0000000..b602e31 --- /dev/null +++ b/REFLECTION-DEV @@ -0,0 +1,1924 @@ +Extension [ extension #139 mongodb version 1.2.0alpha1 ] { + + - INI { + Entry [ mongodb.debug ] + Current = '' + } + } + + - Constants [3] { + Constant [ string MONGODB_VERSION ] { 1.2.0alpha1 } + Constant [ string MONGODB_STABILITY ] { alpha } + Constant [ string BSON_NAMESPACE ] { MongoDB\BSON } + } + + - Functions { + Function [ function MongoDB\BSON\fromPHP ] { + + - Parameters [1] { + Parameter #0 [ $value ] + } + } + Function [ function MongoDB\BSON\toPHP ] { + + - Parameters [1] { + Parameter #0 [ $bson ] + } + } + Function [ function MongoDB\BSON\toJSON ] { + + - Parameters [1] { + Parameter #0 [ $bson ] + } + } + Function [ function MongoDB\BSON\fromJSON ] { + + - Parameters [1] { + Parameter #0 [ $json ] + } + } + } + + - Classes [37] { + Class [ final class MongoDB\Driver\Command ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $document ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\Cursor implements Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [7] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method setTypeMap ] { + + - Parameters [1] { + Parameter #0 [ array $typemap ] + } + } + + Method [ final public method toArray ] { + + - Parameters [0] { + } + } + + Method [ final public method getId ] { + + - Parameters [0] { + } + } + + Method [ final public method getServer ] { + + - Parameters [0] { + } + } + + Method [ final public method isDead ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\CursorId ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\Manager ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ final public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $uri ] + Parameter #1 [ array $options ] + Parameter #2 [ array $driverOptions ] + } + } + + Method [ final public method executeCommand ] { + + - Parameters [3] { + Parameter #0 [ $db ] + Parameter #1 [ MongoDB\Driver\Command $command ] + Parameter #2 [ MongoDB\Driver\ReadPreference or NULL $readPreference ] + } + } + + Method [ final public method executeQuery ] { + + - Parameters [3] { + Parameter #0 [ $namespace ] + Parameter #1 [ MongoDB\Driver\Query $zquery ] + Parameter #2 [ MongoDB\Driver\ReadPreference or NULL $readPreference ] + } + } + + Method [ final public method executeBulkWrite ] { + + - Parameters [3] { + Parameter #0 [ $namespace ] + Parameter #1 [ MongoDB\Driver\BulkWrite $zbulk ] + Parameter #2 [ MongoDB\Driver\WriteConcern or NULL $writeConcern ] + } + } + + Method [ final public method getReadConcern ] { + + - Parameters [0] { + } + } + + Method [ final public method getReadPreference ] { + + - Parameters [0] { + } + } + + Method [ final public method getServers ] { + + - Parameters [0] { + } + } + + Method [ final public method getWriteConcern ] { + + - Parameters [0] { + } + } + + Method [ final public method selectServer ] { + + - Parameters [1] { + Parameter #0 [ MongoDB\Driver\ReadPreference or NULL $readPreference ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\Query ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $filter ] + Parameter #1 [ array $options ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\ReadConcern ] { + + - Constants [2] { + Constant [ string LOCAL ] { local } + Constant [ string MAJORITY ] { majority } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $level ] + } + } + + Method [ final public method getLevel ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\ReadPreference ] { + + - Constants [5] { + Constant [ integer RP_PRIMARY ] { 1 } + Constant [ integer RP_PRIMARY_PREFERRED ] { 5 } + Constant [ integer RP_SECONDARY ] { 2 } + Constant [ integer RP_SECONDARY_PREFERRED ] { 6 } + Constant [ integer RP_NEAREST ] { 10 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $mode ] + Parameter #1 [ array or NULL $tagSets ] + } + } + + Method [ final public method getMode ] { + + - Parameters [0] { + } + } + + Method [ final public method getTagSets ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\Server ] { + + - Constants [9] { + Constant [ integer TYPE_UNKNOWN ] { 0 } + Constant [ integer TYPE_STANDALONE ] { 1 } + Constant [ integer TYPE_MONGOS ] { 2 } + Constant [ integer TYPE_POSSIBLE_PRIMARY ] { 3 } + Constant [ integer TYPE_RS_PRIMARY ] { 4 } + Constant [ integer TYPE_RS_SECONDARY ] { 5 } + Constant [ integer TYPE_RS_ARBITER ] { 6 } + Constant [ integer TYPE_RS_OTHER ] { 7 } + Constant [ integer TYPE_RS_GHOST ] { 8 } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [16] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method executeCommand ] { + + - Parameters [3] { + Parameter #0 [ $db ] + Parameter #1 [ MongoDB\Driver\Command $command ] + Parameter #2 [ MongoDB\Driver\ReadPreference or NULL $readPreference ] + } + } + + Method [ final public method executeQuery ] { + + - Parameters [3] { + Parameter #0 [ $namespace ] + Parameter #1 [ MongoDB\Driver\Query $zquery ] + Parameter #2 [ MongoDB\Driver\ReadPreference or NULL $readPreference ] + } + } + + Method [ final public method executeBulkWrite ] { + + - Parameters [3] { + Parameter #0 [ $namespace ] + Parameter #1 [ MongoDB\Driver\BulkWrite $zbulk ] + Parameter #2 [ MongoDB\Driver\WriteConcern or NULL $writeConcern ] + } + } + + Method [ final public method getHost ] { + + - Parameters [0] { + } + } + + Method [ final public method getTags ] { + + - Parameters [0] { + } + } + + Method [ final public method getInfo ] { + + - Parameters [0] { + } + } + + Method [ final public method getLatency ] { + + - Parameters [0] { + } + } + + Method [ final public method getPort ] { + + - Parameters [0] { + } + } + + Method [ final public method getType ] { + + - Parameters [0] { + } + } + + Method [ final public method isPrimary ] { + + - Parameters [0] { + } + } + + Method [ final public method isSecondary ] { + + - Parameters [0] { + } + } + + Method [ final public method isArbiter ] { + + - Parameters [0] { + } + } + + Method [ final public method isHidden ] { + + - Parameters [0] { + } + } + + Method [ final public method isPassive ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\BulkWrite implements Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ array or NULL $options ] + } + } + + Method [ final public method insert ] { + + - Parameters [1] { + Parameter #0 [ $document ] + } + } + + Method [ final public method update ] { + + - Parameters [3] { + Parameter #0 [ $query ] + Parameter #1 [ $newObj ] + Parameter #2 [ array or NULL $updateOptions ] + } + } + + Method [ final public method delete ] { + + - Parameters [2] { + Parameter #0 [ $query ] + Parameter #1 [ array or NULL $deleteOptions ] + } + } + + Method [ final public method count ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\WriteConcern ] { + + - Constants [1] { + Constant [ string MAJORITY ] { majority } + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $w ] + Parameter #1 [ $wtimeout ] + Parameter #2 [ $journal ] + } + } + + Method [ final public method getW ] { + + - Parameters [0] { + } + } + + Method [ final public method getWtimeout ] { + + - Parameters [0] { + } + } + + Method [ final public method getJournal ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\WriteConcernError ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getInfo ] { + + - Parameters [0] { + } + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\WriteError ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [6] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getIndex ] { + + - Parameters [0] { + } + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + } + + Method [ final public method getInfo ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\Driver\WriteResult ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [12] { + Method [ final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ final public method getInsertedCount ] { + + - Parameters [0] { + } + } + + Method [ final public method getMatchedCount ] { + + - Parameters [0] { + } + } + + Method [ final public method getModifiedCount ] { + + - Parameters [0] { + } + } + + Method [ final public method getDeletedCount ] { + + - Parameters [0] { + } + } + + Method [ final public method getUpsertedCount ] { + + - Parameters [0] { + } + } + + Method [ final public method getServer ] { + + - Parameters [0] { + } + } + + Method [ final public method getUpsertedIds ] { + + - Parameters [0] { + } + } + + Method [ final public method getWriteConcernError ] { + + - Parameters [0] { + } + } + + Method [ final public method getWriteErrors ] { + + - Parameters [0] { + } + } + + Method [ final public method isAcknowledged ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Interface [ interface MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ class MongoDB\Driver\Exception\LogicException extends LogicException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\RuntimeException extends RuntimeException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\UnexpectedValueException extends UnexpectedValueException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\InvalidArgumentException extends InvalidArgumentException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\ConnectionException extends MongoDB\Driver\Exception\RuntimeException implements MongoDB\Driver\Exception\Exception, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\AuthenticationException extends MongoDB\Driver\Exception\ConnectionException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class MongoDB\Driver\Exception\SSLConnectionException extends MongoDB\Driver\Exception\ConnectionException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ abstract class MongoDB\Driver\Exception\WriteException extends MongoDB\Driver\Exception\RuntimeException implements MongoDB\Driver\Exception\Exception, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + Property [ protected $writeResult ] + } + + - Methods [11] { + Method [ final public method getWriteResult ] { + + - Parameters [0] { + } + } + + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ class MongoDB\Driver\Exception\BulkWriteException extends MongoDB\Driver\Exception\WriteException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [5] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + Property [ protected $writeResult ] + } + + - Methods [11] { + Method [ final public method getWriteResult ] { + + - Parameters [0] { + } + } + + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class MongoDB\Driver\Exception\ExecutionTimeoutException extends MongoDB\Driver\Exception\RuntimeException implements MongoDB\Driver\Exception\Exception, Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Class [ final class MongoDB\Driver\Exception\ConnectionTimeoutException extends MongoDB\Driver\Exception\ConnectionException implements Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + + Interface [ interface MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Interface [ interface MongoDB\BSON\Serializable extends MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ abstract public method bsonSerialize ] { + + - Parameters [0] { + } + } + } + } + + Interface [ interface MongoDB\BSON\Unserializable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [1] { + Method [ abstract public method bsonUnserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + } + } + } + + Interface [ interface MongoDB\BSON\Persistable extends MongoDB\BSON\Unserializable, MongoDB\BSON\Serializable, MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [2] { + Method [ abstract public method bsonUnserialize ] { + + - Parameters [1] { + Parameter #0 [ array $data ] + } + } + + Method [ abstract public method bsonSerialize ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\Binary implements MongoDB\BSON\Type ] { + + - Constants [7] { + Constant [ integer TYPE_GENERIC ] { 0 } + Constant [ integer TYPE_FUNCTION ] { 1 } + Constant [ integer TYPE_OLD_BINARY ] { 2 } + Constant [ integer TYPE_OLD_UUID ] { 3 } + Constant [ integer TYPE_UUID ] { 4 } + Constant [ integer TYPE_MD5 ] { 5 } + Constant [ integer TYPE_USER_DEFINED ] { 128 } + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $data ] + Parameter #1 [ $type ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ final public method getData ] { + + - Parameters [0] { + } + } + + Method [ final public method getType ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\Javascript implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $javascript ] + Parameter #1 [ $scope ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getScope ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\MaxKey implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [1] { + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\MinKey implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [1] { + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\ObjectID implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $id ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\Regex implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [5] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $pattern ] + Parameter #1 [ $flags ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ final public method getPattern ] { + + - Parameters [0] { + } + } + + Method [ final public method getFlags ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\Timestamp implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [3] { + Method [ final public method __construct ] { + + - Parameters [2] { + Parameter #0 [ $increment ] + Parameter #1 [ $timestamp ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + } + } + + Class [ final class MongoDB\BSON\UTCDateTime implements MongoDB\BSON\Type ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ static public method __set_state ] { + + - Parameters [1] { + Parameter #0 [ array $properties ] + } + } + } + + - Properties [0] { + } + + - Methods [4] { + Method [ final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $milliseconds ] + } + } + + Method [ final public method __toString ] { + + - Parameters [0] { + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ final public method toDateTime ] { + + - Parameters [0] { + } + } + } + } + } +} + -- cgit