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
2f3a455e
Commit
2f3a455e
authored
Dec 24, 2015
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up some doc block typos
parent
2c689a2b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
Collection.php
src/Collection.php
+6
-6
CreateIndexes.php
src/Operation/CreateIndexes.php
+0
-1
DropDatabase.php
src/Operation/DropDatabase.php
+1
-2
No files found.
src/Collection.php
View file @
2f3a455e
...
...
@@ -647,9 +647,9 @@ class Collection
*
* @see UpdateMany::__construct() for supported options
* @see http://docs.mongodb.org/manual/reference/command/update/
* @param array|object $filter
Query by which to filter documents
* @param array|object $
replacement
Update to apply to the matched documents
* @param array $options
Command options
* @param array|object $filter Query by which to filter documents
* @param array|object $
update
Update to apply to the matched documents
* @param array $options Command options
* @return UpdateResult
*/
public
function
updateMany
(
$filter
,
$update
,
array
$options
=
[])
...
...
@@ -669,9 +669,9 @@ class Collection
*
* @see ReplaceOne::__construct() for supported options
* @see http://docs.mongodb.org/manual/reference/command/update/
* @param array|object $filter
Query by which to filter documents
* @param array|object $
replacement
Update to apply to the matched document
* @param array $options
Command options
* @param array|object $filter Query by which to filter documents
* @param array|object $
update
Update to apply to the matched document
* @param array $options Command options
* @return UpdateResult
*/
public
function
updateOne
(
$filter
,
$update
,
array
$options
=
[])
...
...
src/Operation/CreateIndexes.php
View file @
2f3a455e
...
...
@@ -108,7 +108,6 @@ class CreateIndexes implements Executable
* "system.indexes" collection (MongoDB <2.6).
*
* @param Server $server
* @param IndexInput[] $indexes
*/
private
function
executeLegacy
(
Server
$server
)
{
...
...
src/Operation/DropDatabase.php
View file @
2f3a455e
...
...
@@ -20,8 +20,7 @@ class DropDatabase implements Executable
/**
* Constructs a dropDatabase command.
*
* @param string $databaseName Database name
* @param string $collectionName Collection name
* @param string $databaseName Database name
*/
public
function
__construct
(
$databaseName
)
{
...
...
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