diff options
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 340 |
1 files changed, 335 insertions, 5 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { +Extension [ <persistent> extension #131 mongodb version 2.1.0 ] { - Dependencies { Dependency [ date (Required) ] @@ -14,7 +14,7 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { } - Constants [2] { - Constant [ string MONGODB_VERSION ] { 2.0.0 } + Constant [ string MONGODB_VERSION ] { 2.1.0 } Constant [ string MONGODB_STABILITY ] { stable } } @@ -44,7 +44,7 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { } } - - Classes [76] { + - Classes [79] { Interface [ <internal:mongodb> interface MongoDB\BSON\Type ] { - Constants [0] { @@ -1769,6 +1769,185 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { } } + Class [ <internal:mongodb> final class MongoDB\Driver\BulkWriteCommand implements Countable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ <internal:mongodb, ctor> final public method __construct ] { + + - Parameters [1] { + Parameter #0 [ <optional> ?array $options = null ] + } + } + + Method [ <internal:mongodb, prototype Countable> public method count ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method deleteOne ] { + + - Parameters [3] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $filter ] + Parameter #2 [ <optional> ?array $options = null ] + } + - Return [ void ] + } + + Method [ <internal:mongodb> final public method deleteMany ] { + + - Parameters [3] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $filter ] + Parameter #2 [ <optional> ?array $options = null ] + } + - Return [ void ] + } + + Method [ <internal:mongodb> final public method insertOne ] { + + - Parameters [2] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $document ] + } + - Return [ mixed ] + } + + Method [ <internal:mongodb> final public method replaceOne ] { + + - Parameters [4] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $filter ] + Parameter #2 [ <required> object|array $replacement ] + Parameter #3 [ <optional> ?array $options = null ] + } + - Return [ void ] + } + + Method [ <internal:mongodb> final public method updateOne ] { + + - Parameters [4] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $filter ] + Parameter #2 [ <required> object|array $update ] + Parameter #3 [ <optional> ?array $options = null ] + } + - Return [ void ] + } + + Method [ <internal:mongodb> final public method updateMany ] { + + - Parameters [4] { + Parameter #0 [ <required> string $namespace ] + Parameter #1 [ <required> object|array $filter ] + Parameter #2 [ <required> object|array $update ] + Parameter #3 [ <optional> ?array $options = null ] + } + - Return [ void ] + } + } + } + + Class [ <internal:mongodb> final class MongoDB\Driver\BulkWriteCommandResult ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [10] { + Method [ <internal:mongodb, ctor> final private method __construct ] { + + - Parameters [0] { + } + } + + Method [ <internal:mongodb> final public method getInsertedCount ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method getMatchedCount ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method getModifiedCount ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method getUpsertedCount ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method getDeletedCount ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:mongodb> final public method getInsertResults ] { + + - Parameters [0] { + } + - Return [ ?MongoDB\BSON\Document ] + } + + Method [ <internal:mongodb> final public method getUpdateResults ] { + + - Parameters [0] { + } + - Return [ ?MongoDB\BSON\Document ] + } + + Method [ <internal:mongodb> final public method getDeleteResults ] { + + - Parameters [0] { + } + - Return [ ?MongoDB\BSON\Document ] + } + + Method [ <internal:mongodb> final public method isAcknowledged ] { + + - Parameters [0] { + } + - Return [ bool ] + } + } + } + Class [ <internal:mongodb> final class MongoDB\Driver\ClientEncryption ] { - Constants [7] { @@ -2026,7 +2205,7 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { - Properties [0] { } - - Methods [17] { + - Methods [18] { Method [ <internal:mongodb, ctor> final public method __construct ] { - Parameters [3] { @@ -2062,6 +2241,15 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { - Return [ MongoDB\Driver\WriteResult ] } + Method [ <internal:mongodb> final public method executeBulkWriteCommand ] { + + - Parameters [2] { + Parameter #0 [ <required> MongoDB\Driver\BulkWriteCommand $bulkWriteCommand ] + Parameter #1 [ <optional> ?array $options = null ] + } + - Return [ MongoDB\Driver\BulkWriteCommandResult ] + } + Method [ <internal:mongodb> final public method executeCommand ] { - Parameters [3] { @@ -2384,7 +2572,7 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { - Properties [0] { } - - Methods [19] { + - Methods [20] { Method [ <internal:mongodb, ctor> final private method __construct ] { - Parameters [0] { @@ -2401,6 +2589,15 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { - Return [ MongoDB\Driver\WriteResult ] } + Method [ <internal:mongodb> final public method executeBulkWriteCommand ] { + + - Parameters [2] { + Parameter #0 [ <required> MongoDB\Driver\BulkWriteCommand $bulkWriteCommand ] + Parameter #1 [ <optional> ?array $options = null ] + } + - Return [ MongoDB\Driver\BulkWriteCommandResult ] + } + Method [ <internal:mongodb> final public method executeCommand ] { - Parameters [3] { @@ -3719,6 +3916,139 @@ Extension [ <persistent> extension #131 mongodb version 2.0.0 ] { } } + Class [ <internal:mongodb> final class MongoDB\Driver\Exception\BulkWriteCommandException extends MongoDB\Driver\Exception\ServerException implements Stringable, Throwable, MongoDB\Driver\Exception\Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [9] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] + Property [ protected $errorLabels = NULL ] + Property [ private ?MongoDB\BSON\Document $errorReply = NULL ] + Property [ private ?MongoDB\Driver\BulkWriteCommandResult $partialResult = NULL ] + Property [ private array $writeErrors = [] ] + Property [ private array $writeConcernErrors = [] ] + } + + - Methods [15] { + Method [ <internal:mongodb> final public method getErrorReply ] { + + - Parameters [0] { + } + - Return [ ?MongoDB\BSON\Document ] + } + + Method [ <internal:mongodb> final public method getPartialResult ] { + + - Parameters [0] { + } + - Return [ ?MongoDB\Driver\BulkWriteCommandResult ] + } + + Method [ <internal:mongodb> final public method getWriteErrors ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ <internal:mongodb> final public method getWriteConcernErrors ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ <internal:mongodb, inherits MongoDB\Driver\Exception\RuntimeException> final public method hasErrorLabel ] { + + - Parameters [1] { + Parameter #0 [ <required> string $errorLabel ] + } + - Return [ bool ] + } + + Method [ <internal:Core, inherits Exception, ctor> public method __construct ] { + + - Parameters [3] { + Parameter #0 [ <optional> string $message = "" ] + Parameter #1 [ <optional> int $code = 0 ] + Parameter #2 [ <optional> ?Throwable $previous = null ] + } + } + + Method [ <internal:Core, inherits Exception> public method __wakeup ] { + + - Parameters [0] { + } + - Tentative return [ void ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + Class [ <internal:mongodb> class MongoDB\Driver\Exception\CommandException extends MongoDB\Driver\Exception\ServerException implements Stringable, Throwable, MongoDB\Driver\Exception\Exception ] { - Constants [0] { |