Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-php-library
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sinan
mongo-php-library
Commits
5f71c1be
Commit
5f71c1be
authored
Sep 14, 2016
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #243
parents
0a979b22
94a803d8
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
40 additions
and
40 deletions
+40
-40
CollectionInfo.php
src/Model/CollectionInfo.php
+1
-1
CollectionInfoCommandIterator.php
src/Model/CollectionInfoCommandIterator.php
+1
-1
CollectionInfoIterator.php
src/Model/CollectionInfoIterator.php
+1
-1
CollectionInfoLegacyIterator.php
src/Model/CollectionInfoLegacyIterator.php
+1
-1
DatabaseInfo.php
src/Model/DatabaseInfo.php
+1
-1
DatabaseInfoIterator.php
src/Model/DatabaseInfoIterator.php
+1
-1
DatabaseInfoLegacyIterator.php
src/Model/DatabaseInfoLegacyIterator.php
+1
-1
IndexInfo.php
src/Model/IndexInfo.php
+1
-1
IndexInfoIterator.php
src/Model/IndexInfoIterator.php
+1
-1
IndexInfoIteratorIterator.php
src/Model/IndexInfoIteratorIterator.php
+1
-1
IndexInput.php
src/Model/IndexInput.php
+2
-2
Aggregate.php
src/Operation/Aggregate.php
+1
-1
BulkWrite.php
src/Operation/BulkWrite.php
+1
-1
Count.php
src/Operation/Count.php
+1
-1
CreateCollection.php
src/Operation/CreateCollection.php
+1
-1
CreateIndexes.php
src/Operation/CreateIndexes.php
+2
-2
DatabaseCommand.php
src/Operation/DatabaseCommand.php
+1
-1
DeleteMany.php
src/Operation/DeleteMany.php
+1
-1
DeleteOne.php
src/Operation/DeleteOne.php
+1
-1
Distinct.php
src/Operation/Distinct.php
+1
-1
DropCollection.php
src/Operation/DropCollection.php
+2
-2
DropDatabase.php
src/Operation/DropDatabase.php
+2
-2
DropIndexes.php
src/Operation/DropIndexes.php
+1
-1
Find.php
src/Operation/Find.php
+1
-1
FindOne.php
src/Operation/FindOne.php
+1
-1
FindOneAndDelete.php
src/Operation/FindOneAndDelete.php
+1
-1
FindOneAndReplace.php
src/Operation/FindOneAndReplace.php
+1
-1
FindOneAndUpdate.php
src/Operation/FindOneAndUpdate.php
+1
-1
InsertMany.php
src/Operation/InsertMany.php
+1
-1
InsertOne.php
src/Operation/InsertOne.php
+1
-1
ListCollections.php
src/Operation/ListCollections.php
+1
-1
ListDatabases.php
src/Operation/ListDatabases.php
+1
-1
ListIndexes.php
src/Operation/ListIndexes.php
+1
-1
ReplaceOne.php
src/Operation/ReplaceOne.php
+1
-1
UpdateMany.php
src/Operation/UpdateMany.php
+1
-1
UpdateOne.php
src/Operation/UpdateOne.php
+1
-1
No files found.
src/Model/CollectionInfo.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ namespace MongoDB\Model;
...
@@ -10,7 +10,7 @@ namespace MongoDB\Model;
* collection. It provides methods to access options for the collection.
* collection. It provides methods to access options for the collection.
*
*
* @api
* @api
* @see MongoDB\Database::listCollections()
* @see
\
MongoDB\Database::listCollections()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
*/
*/
class
CollectionInfo
class
CollectionInfo
...
...
src/Model/CollectionInfoCommandIterator.php
View file @
5f71c1be
...
@@ -11,7 +11,7 @@ use IteratorIterator;
...
@@ -11,7 +11,7 @@ use IteratorIterator;
* command.
* command.
*
*
* @internal
* @internal
* @see MongoDB\Database::listCollections()
* @see
\
MongoDB\Database::listCollections()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
*/
*/
...
...
src/Model/CollectionInfoIterator.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use Iterator;
...
@@ -10,7 +10,7 @@ use Iterator;
* This iterator is used for enumerating collections in a database.
* This iterator is used for enumerating collections in a database.
*
*
* @api
* @api
* @see MongoDB\Database::listCollections()
* @see
\
MongoDB\Database::listCollections()
*/
*/
interface
CollectionInfoIterator
extends
Iterator
interface
CollectionInfoIterator
extends
Iterator
{
{
...
...
src/Model/CollectionInfoLegacyIterator.php
View file @
5f71c1be
...
@@ -16,7 +16,7 @@ use Traversable;
...
@@ -16,7 +16,7 @@ use Traversable;
* the listCollections command.
* the listCollections command.
*
*
* @internal
* @internal
* @see MongoDB\Database::listCollections()
* @see
\
MongoDB\Database::listCollections()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-collections.rst
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
* @see http://docs.mongodb.org/manual/reference/system-collections/
* @see http://docs.mongodb.org/manual/reference/system-collections/
...
...
src/Model/DatabaseInfo.php
View file @
5f71c1be
...
@@ -9,7 +9,7 @@ namespace MongoDB\Model;
...
@@ -9,7 +9,7 @@ namespace MongoDB\Model;
* command. It provides methods to access common database properties.
* command. It provides methods to access common database properties.
*
*
* @api
* @api
* @see MongoDB\Client::listDatabases()
* @see
\
MongoDB\Client::listDatabases()
* @see http://docs.mongodb.org/manual/reference/command/listDatabases/
* @see http://docs.mongodb.org/manual/reference/command/listDatabases/
*/
*/
class
DatabaseInfo
class
DatabaseInfo
...
...
src/Model/DatabaseInfoIterator.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use Iterator;
...
@@ -10,7 +10,7 @@ use Iterator;
* This iterator is used for enumerating databases on a server.
* This iterator is used for enumerating databases on a server.
*
*
* @api
* @api
* @see MongoDB\Client::listDatabases()
* @see
\
MongoDB\Client::listDatabases()
*/
*/
interface
DatabaseInfoIterator
extends
Iterator
interface
DatabaseInfoIterator
extends
Iterator
{
{
...
...
src/Model/DatabaseInfoLegacyIterator.php
View file @
5f71c1be
...
@@ -9,7 +9,7 @@ namespace MongoDB\Model;
...
@@ -9,7 +9,7 @@ namespace MongoDB\Model;
* command's single-document result.
* command's single-document result.
*
*
* @internal
* @internal
* @see MongoDB\Client::listDatabases()
* @see
\
MongoDB\Client::listDatabases()
* @see http://docs.mongodb.org/manual/reference/command/listDatabases/
* @see http://docs.mongodb.org/manual/reference/command/listDatabases/
*/
*/
class
DatabaseInfoLegacyIterator
implements
DatabaseInfoIterator
class
DatabaseInfoLegacyIterator
implements
DatabaseInfoIterator
...
...
src/Model/IndexInfo.php
View file @
5f71c1be
...
@@ -16,7 +16,7 @@ use ArrayAccess;
...
@@ -16,7 +16,7 @@ use ArrayAccess;
* db.collection.createIndex() documentation.
* db.collection.createIndex() documentation.
*
*
* @api
* @api
* @see MongoDB\Collection::listIndexes()
* @see
\
MongoDB\Collection::listIndexes()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see http://docs.mongodb.org/manual/reference/method/db.collection.createIndex/
* @see http://docs.mongodb.org/manual/reference/method/db.collection.createIndex/
*/
*/
...
...
src/Model/IndexInfoIterator.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use Iterator;
...
@@ -10,7 +10,7 @@ use Iterator;
* This iterator is used for enumerating indexes in a collection.
* This iterator is used for enumerating indexes in a collection.
*
*
* @api
* @api
* @see MongoDB\Collection::listIndexes()
* @see
\
MongoDB\Collection::listIndexes()
*/
*/
interface
IndexInfoIterator
extends
Iterator
interface
IndexInfoIterator
extends
Iterator
{
{
...
...
src/Model/IndexInfoIteratorIterator.php
View file @
5f71c1be
...
@@ -12,7 +12,7 @@ use IteratorIterator;
...
@@ -12,7 +12,7 @@ use IteratorIterator;
* collection.
* collection.
*
*
* @internal
* @internal
* @see MongoDB\Collection::listIndexes()
* @see
\
MongoDB\Collection::listIndexes()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see http://docs.mongodb.org/manual/reference/command/listIndexes/
* @see http://docs.mongodb.org/manual/reference/command/listIndexes/
* @see http://docs.mongodb.org/manual/reference/system-collections/
* @see http://docs.mongodb.org/manual/reference/system-collections/
...
...
src/Model/IndexInput.php
View file @
5f71c1be
...
@@ -11,7 +11,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -11,7 +11,7 @@ use MongoDB\Exception\InvalidArgumentException;
* This class is used to validate user input for index creation.
* This class is used to validate user input for index creation.
*
*
* @internal
* @internal
* @see MongoDB\Collection::createIndexes()
* @see
\
MongoDB\Collection::createIndexes()
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see https://github.com/mongodb/specifications/blob/master/source/enumerate-indexes.rst
* @see http://docs.mongodb.org/manual/reference/method/db.collection.createIndex/
* @see http://docs.mongodb.org/manual/reference/method/db.collection.createIndex/
*/
*/
...
@@ -73,7 +73,7 @@ class IndexInput implements Serializable
...
@@ -73,7 +73,7 @@ class IndexInput implements Serializable
/**
/**
* Serialize the index information to BSON for index creation.
* Serialize the index information to BSON for index creation.
*
*
* @see MongoDB\Collection::createIndexes()
* @see
\
MongoDB\Collection::createIndexes()
* @see http://php.net/mongodb-bson-serializable.bsonserialize
* @see http://php.net/mongodb-bson-serializable.bsonserialize
* @return array
* @return array
*/
*/
...
...
src/Operation/Aggregate.php
View file @
5f71c1be
...
@@ -16,7 +16,7 @@ use Traversable;
...
@@ -16,7 +16,7 @@ use Traversable;
* Operation for the aggregate command.
* Operation for the aggregate command.
*
*
* @api
* @api
* @see MongoDB\Collection::aggregate()
* @see
\
MongoDB\Collection::aggregate()
* @see http://docs.mongodb.org/manual/reference/command/aggregate/
* @see http://docs.mongodb.org/manual/reference/command/aggregate/
*/
*/
class
Aggregate
implements
Executable
class
Aggregate
implements
Executable
...
...
src/Operation/BulkWrite.php
View file @
5f71c1be
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for executing multiple write operations.
* Operation for executing multiple write operations.
*
*
* @api
* @api
* @see MongoDB\Collection::bulkWrite()
* @see
\
MongoDB\Collection::bulkWrite()
*/
*/
class
BulkWrite
implements
Executable
class
BulkWrite
implements
Executable
{
{
...
...
src/Operation/Count.php
View file @
5f71c1be
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\UnexpectedValueException;
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\UnexpectedValueException;
* Operation for the count command.
* Operation for the count command.
*
*
* @api
* @api
* @see MongoDB\Collection::count()
* @see
\
MongoDB\Collection::count()
* @see http://docs.mongodb.org/manual/reference/command/count/
* @see http://docs.mongodb.org/manual/reference/command/count/
*/
*/
class
Count
implements
Executable
class
Count
implements
Executable
...
...
src/Operation/CreateCollection.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for the create command.
* Operation for the create command.
*
*
* @api
* @api
* @see MongoDB\Database::createCollection()
* @see
\
MongoDB\Database::createCollection()
* @see http://docs.mongodb.org/manual/reference/command/create/
* @see http://docs.mongodb.org/manual/reference/command/create/
*/
*/
class
CreateCollection
implements
Executable
class
CreateCollection
implements
Executable
...
...
src/Operation/CreateIndexes.php
View file @
5f71c1be
...
@@ -13,8 +13,8 @@ use MongoDB\Model\IndexInput;
...
@@ -13,8 +13,8 @@ use MongoDB\Model\IndexInput;
* Operation for the createIndexes command.
* Operation for the createIndexes command.
*
*
* @api
* @api
* @see MongoDB\Collection::createIndex()
* @see
\
MongoDB\Collection::createIndex()
* @see MongoDB\Collection::createIndexes()
* @see
\
MongoDB\Collection::createIndexes()
* @see http://docs.mongodb.org/manual/reference/command/createIndexes/
* @see http://docs.mongodb.org/manual/reference/command/createIndexes/
*/
*/
class
CreateIndexes
implements
Executable
class
CreateIndexes
implements
Executable
...
...
src/Operation/DatabaseCommand.php
View file @
5f71c1be
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for executing a database command.
* Operation for executing a database command.
*
*
* @api
* @api
* @see MongoDB\Database::command()
* @see
\
MongoDB\Database::command()
*/
*/
class
DatabaseCommand
implements
Executable
class
DatabaseCommand
implements
Executable
{
{
...
...
src/Operation/DeleteMany.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for deleting multiple document with the delete command.
* Operation for deleting multiple document with the delete command.
*
*
* @api
* @api
* @see MongoDB\Collection::deleteOne()
* @see
\
MongoDB\Collection::deleteOne()
* @see http://docs.mongodb.org/manual/reference/command/delete/
* @see http://docs.mongodb.org/manual/reference/command/delete/
*/
*/
class
DeleteMany
implements
Executable
class
DeleteMany
implements
Executable
...
...
src/Operation/DeleteOne.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for deleting a single document with the delete command.
* Operation for deleting a single document with the delete command.
*
*
* @api
* @api
* @see MongoDB\Collection::deleteOne()
* @see
\
MongoDB\Collection::deleteOne()
* @see http://docs.mongodb.org/manual/reference/command/delete/
* @see http://docs.mongodb.org/manual/reference/command/delete/
*/
*/
class
DeleteOne
implements
Executable
class
DeleteOne
implements
Executable
...
...
src/Operation/Distinct.php
View file @
5f71c1be
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\UnexpectedValueException;
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\UnexpectedValueException;
* Operation for the distinct command.
* Operation for the distinct command.
*
*
* @api
* @api
* @see MongoDB\Collection::distinct()
* @see
\
MongoDB\Collection::distinct()
* @see http://docs.mongodb.org/manual/reference/command/distinct/
* @see http://docs.mongodb.org/manual/reference/command/distinct/
*/
*/
class
Distinct
implements
Executable
class
Distinct
implements
Executable
...
...
src/Operation/DropCollection.php
View file @
5f71c1be
...
@@ -11,8 +11,8 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -11,8 +11,8 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for the drop command.
* Operation for the drop command.
*
*
* @api
* @api
* @see MongoDB\Collection::drop()
* @see
\
MongoDB\Collection::drop()
* @see MongoDB\Database::dropCollection()
* @see
\
MongoDB\Database::dropCollection()
* @see http://docs.mongodb.org/manual/reference/command/drop/
* @see http://docs.mongodb.org/manual/reference/command/drop/
*/
*/
class
DropCollection
implements
Executable
class
DropCollection
implements
Executable
...
...
src/Operation/DropDatabase.php
View file @
5f71c1be
...
@@ -10,8 +10,8 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,8 +10,8 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for the dropDatabase command.
* Operation for the dropDatabase command.
*
*
* @api
* @api
* @see MongoDB\Client::dropDatabase()
* @see
\
MongoDB\Client::dropDatabase()
* @see MongoDB\Database::drop()
* @see
\
MongoDB\Database::drop()
* @see http://docs.mongodb.org/manual/reference/command/dropDatabase/
* @see http://docs.mongodb.org/manual/reference/command/dropDatabase/
*/
*/
class
DropDatabase
implements
Executable
class
DropDatabase
implements
Executable
...
...
src/Operation/DropIndexes.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for the dropIndexes command.
* Operation for the dropIndexes command.
*
*
* @api
* @api
* @see MongoDB\Collection::dropIndexes()
* @see
\
MongoDB\Collection::dropIndexes()
* @see http://docs.mongodb.org/manual/reference/command/dropIndexes/
* @see http://docs.mongodb.org/manual/reference/command/dropIndexes/
*/
*/
class
DropIndexes
implements
Executable
class
DropIndexes
implements
Executable
...
...
src/Operation/Find.php
View file @
5f71c1be
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -13,7 +13,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for the find command.
* Operation for the find command.
*
*
* @api
* @api
* @see MongoDB\Collection::find()
* @see
\
MongoDB\Collection::find()
* @see http://docs.mongodb.org/manual/tutorial/query-documents/
* @see http://docs.mongodb.org/manual/tutorial/query-documents/
* @see http://docs.mongodb.org/manual/reference/operator/query-modifier/
* @see http://docs.mongodb.org/manual/reference/operator/query-modifier/
*/
*/
...
...
src/Operation/FindOne.php
View file @
5f71c1be
...
@@ -9,7 +9,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -9,7 +9,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for finding a single document with the find command.
* Operation for finding a single document with the find command.
*
*
* @api
* @api
* @see MongoDB\Collection::findOne()
* @see
\
MongoDB\Collection::findOne()
* @see http://docs.mongodb.org/manual/tutorial/query-documents/
* @see http://docs.mongodb.org/manual/tutorial/query-documents/
* @see http://docs.mongodb.org/manual/reference/operator/query-modifier/
* @see http://docs.mongodb.org/manual/reference/operator/query-modifier/
*/
*/
...
...
src/Operation/FindOneAndDelete.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for deleting a document with the findAndModify command.
* Operation for deleting a document with the findAndModify command.
*
*
* @api
* @api
* @see MongoDB\Collection::findOneAndDelete()
* @see
\
MongoDB\Collection::findOneAndDelete()
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
*/
*/
class
FindOneAndDelete
implements
Executable
class
FindOneAndDelete
implements
Executable
...
...
src/Operation/FindOneAndReplace.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for replacing a document with the findAndModify command.
* Operation for replacing a document with the findAndModify command.
*
*
* @api
* @api
* @see MongoDB\Collection::findOneAndReplace()
* @see
\
MongoDB\Collection::findOneAndReplace()
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
*/
*/
class
FindOneAndReplace
implements
Executable
class
FindOneAndReplace
implements
Executable
...
...
src/Operation/FindOneAndUpdate.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for updating a document with the findAndModify command.
* Operation for updating a document with the findAndModify command.
*
*
* @api
* @api
* @see MongoDB\Collection::findOneAndUpdate()
* @see
\
MongoDB\Collection::findOneAndUpdate()
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
* @see http://docs.mongodb.org/manual/reference/command/findAndModify/
*/
*/
class
FindOneAndUpdate
implements
Executable
class
FindOneAndUpdate
implements
Executable
...
...
src/Operation/InsertMany.php
View file @
5f71c1be
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for inserting multiple documents with the insert command.
* Operation for inserting multiple documents with the insert command.
*
*
* @api
* @api
* @see MongoDB\Collection::insertMany()
* @see
\
MongoDB\Collection::insertMany()
* @see http://docs.mongodb.org/manual/reference/command/insert/
* @see http://docs.mongodb.org/manual/reference/command/insert/
*/
*/
class
InsertMany
implements
Executable
class
InsertMany
implements
Executable
...
...
src/Operation/InsertOne.php
View file @
5f71c1be
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -12,7 +12,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for inserting a single document with the insert command.
* Operation for inserting a single document with the insert command.
*
*
* @api
* @api
* @see MongoDB\Collection::insertOne()
* @see
\
MongoDB\Collection::insertOne()
* @see http://docs.mongodb.org/manual/reference/command/insert/
* @see http://docs.mongodb.org/manual/reference/command/insert/
*/
*/
class
InsertOne
implements
Executable
class
InsertOne
implements
Executable
...
...
src/Operation/ListCollections.php
View file @
5f71c1be
...
@@ -14,7 +14,7 @@ use MongoDB\Model\CollectionInfoLegacyIterator;
...
@@ -14,7 +14,7 @@ use MongoDB\Model\CollectionInfoLegacyIterator;
* Operation for the listCollections command.
* Operation for the listCollections command.
*
*
* @api
* @api
* @see MongoDB\Database::listCollections()
* @see
\
MongoDB\Database::listCollections()
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
* @see http://docs.mongodb.org/manual/reference/command/listCollections/
*/
*/
class
ListCollections
implements
Executable
class
ListCollections
implements
Executable
...
...
src/Operation/ListDatabases.php
View file @
5f71c1be
...
@@ -13,7 +13,7 @@ use MongoDB\Model\DatabaseInfoLegacyIterator;
...
@@ -13,7 +13,7 @@ use MongoDB\Model\DatabaseInfoLegacyIterator;
* Operation for the ListDatabases command.
* Operation for the ListDatabases command.
*
*
* @api
* @api
* @see MongoDB\Client::listDatabases()
* @see
\
MongoDB\Client::listDatabases()
* @see http://docs.mongodb.org/manual/reference/command/ListDatabases/
* @see http://docs.mongodb.org/manual/reference/command/ListDatabases/
*/
*/
class
ListDatabases
implements
Executable
class
ListDatabases
implements
Executable
...
...
src/Operation/ListIndexes.php
View file @
5f71c1be
...
@@ -15,7 +15,7 @@ use EmptyIterator;
...
@@ -15,7 +15,7 @@ use EmptyIterator;
* Operation for the listIndexes command.
* Operation for the listIndexes command.
*
*
* @api
* @api
* @see MongoDB\Collection::listIndexes()
* @see
\
MongoDB\Collection::listIndexes()
* @see http://docs.mongodb.org/manual/reference/command/listIndexes/
* @see http://docs.mongodb.org/manual/reference/command/listIndexes/
*/
*/
class
ListIndexes
implements
Executable
class
ListIndexes
implements
Executable
...
...
src/Operation/ReplaceOne.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for replacing a single document with the update command.
* Operation for replacing a single document with the update command.
*
*
* @api
* @api
* @see MongoDB\Collection::replaceOne()
* @see
\
MongoDB\Collection::replaceOne()
* @see http://docs.mongodb.org/manual/reference/command/update/
* @see http://docs.mongodb.org/manual/reference/command/update/
*/
*/
class
ReplaceOne
implements
Executable
class
ReplaceOne
implements
Executable
...
...
src/Operation/UpdateMany.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for updating multiple documents with the update command.
* Operation for updating multiple documents with the update command.
*
*
* @api
* @api
* @see MongoDB\Collection::updateMany()
* @see
\
MongoDB\Collection::updateMany()
* @see http://docs.mongodb.org/manual/reference/command/update/
* @see http://docs.mongodb.org/manual/reference/command/update/
*/
*/
class
UpdateMany
implements
Executable
class
UpdateMany
implements
Executable
...
...
src/Operation/UpdateOne.php
View file @
5f71c1be
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
...
@@ -10,7 +10,7 @@ use MongoDB\Exception\InvalidArgumentException;
* Operation for updating a single document with the update command.
* Operation for updating a single document with the update command.
*
*
* @api
* @api
* @see MongoDB\Collection::updateOne()
* @see
\
MongoDB\Collection::updateOne()
* @see http://docs.mongodb.org/manual/reference/command/update/
* @see http://docs.mongodb.org/manual/reference/command/update/
*/
*/
class
UpdateOne
implements
Executable
class
UpdateOne
implements
Executable
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment