Documentation

ModifyCollection
in package
implements Executable

Operation for the collMod command.

Tags
see
Database::modifyCollection()
see
http://docs.mongodb.org/manual/reference/command/collMod/

Interfaces, Classes, Traits and Enums

Executable

Table of Contents

$collectionName  : string
$collectionOptions  : array<string|int, mixed>
$databaseName  : string
$options  : array<string|int, mixed>
__construct()  : mixed
Constructs a collMod command.
execute()  : array<string|int, mixed>|object
Execute the operation.
createOptions()  : array<string|int, mixed>
Create options for executing the command.

Properties

Methods

__construct()

Constructs a collMod command.

public __construct(string $databaseName, string $collectionName, array<string|int, mixed> $collectionOptions[, array<string|int, mixed> $options = [] ]) : mixed

Supported options:

  • session (MongoDB\Driver\Session): Client session.

  • typeMap (array): Type map for BSON deserialization. This will only be used for the returned command result document.

  • writeConcern (MongoDB\Driver\WriteConcern): Write concern.

Parameters
$databaseName : string

Database name

$collectionName : string

Collection or view to modify

$collectionOptions : array<string|int, mixed>

Collection or view options to assign

$options : array<string|int, mixed> = []

Command options

Tags
throws
InvalidArgumentException

for parameter/option parsing errors

Return values
mixed

execute()

Execute the operation.

public execute(Server $server) : array<string|int, mixed>|object
Parameters
$server : Server
Tags
see
Executable::execute()
throws
RuntimeException

for other driver errors (e.g. connection errors)

Return values
array<string|int, mixed>|object

Command result document

Search results