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
f8929259
Commit
f8929259
authored
Jan 11, 2016
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up exception docs and use statements
parent
8f646a38
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5 additions
and
3 deletions
+5
-3
Aggregate.php
src/Operation/Aggregate.php
+1
-0
Count.php
src/Operation/Count.php
+1
-0
Distinct.php
src/Operation/Distinct.php
+1
-0
Find.php
src/Operation/Find.php
+0
-2
FindAndModify.php
src/Operation/FindAndModify.php
+1
-0
ListCollections.php
src/Operation/ListCollections.php
+0
-1
ListDatabases.php
src/Operation/ListDatabases.php
+1
-0
No files found.
src/Operation/Aggregate.php
View file @
f8929259
...
@@ -157,6 +157,7 @@ class Aggregate implements Executable
...
@@ -157,6 +157,7 @@ class Aggregate implements Executable
* @see Executable::execute()
* @see Executable::execute()
* @param Server $server
* @param Server $server
* @return Traversable
* @return Traversable
* @throws UnexpectedValueException if the command response was malformed
*/
*/
public
function
execute
(
Server
$server
)
public
function
execute
(
Server
$server
)
{
{
...
...
src/Operation/Count.php
View file @
f8929259
...
@@ -102,6 +102,7 @@ class Count implements Executable
...
@@ -102,6 +102,7 @@ class Count implements Executable
* @see Executable::execute()
* @see Executable::execute()
* @param Server $server
* @param Server $server
* @return integer
* @return integer
* @throws UnexpectedValueException if the command response was malformed
*/
*/
public
function
execute
(
Server
$server
)
public
function
execute
(
Server
$server
)
{
{
...
...
src/Operation/Distinct.php
View file @
f8929259
...
@@ -79,6 +79,7 @@ class Distinct implements Executable
...
@@ -79,6 +79,7 @@ class Distinct implements Executable
* @see Executable::execute()
* @see Executable::execute()
* @param Server $server
* @param Server $server
* @return mixed[]
* @return mixed[]
* @throws UnexpectedValueException if the command response was malformed
*/
*/
public
function
execute
(
Server
$server
)
public
function
execute
(
Server
$server
)
{
{
...
...
src/Operation/Find.php
View file @
f8929259
...
@@ -7,8 +7,6 @@ use MongoDB\Driver\ReadConcern;
...
@@ -7,8 +7,6 @@ use MongoDB\Driver\ReadConcern;
use
MongoDB\Driver\ReadPreference
;
use
MongoDB\Driver\ReadPreference
;
use
MongoDB\Driver\Server
;
use
MongoDB\Driver\Server
;
use
MongoDB\Exception\InvalidArgumentException
;
use
MongoDB\Exception\InvalidArgumentException
;
use
MongoDB\Exception\RuntimeException
;
use
MongoDB\Exception\UnexpectedValueException
;
/**
/**
* Operation for the find command.
* Operation for the find command.
...
...
src/Operation/FindAndModify.php
View file @
f8929259
...
@@ -130,6 +130,7 @@ class FindAndModify implements Executable
...
@@ -130,6 +130,7 @@ class FindAndModify implements Executable
* @see Executable::execute()
* @see Executable::execute()
* @param Server $server
* @param Server $server
* @return object|null
* @return object|null
* @throws UnexpectedValueException if the command response was malformed
*/
*/
public
function
execute
(
Server
$server
)
public
function
execute
(
Server
$server
)
{
{
...
...
src/Operation/ListCollections.php
View file @
f8929259
...
@@ -5,7 +5,6 @@ namespace MongoDB\Operation;
...
@@ -5,7 +5,6 @@ namespace MongoDB\Operation;
use
MongoDB\Driver\Command
;
use
MongoDB\Driver\Command
;
use
MongoDB\Driver\Query
;
use
MongoDB\Driver\Query
;
use
MongoDB\Driver\Server
;
use
MongoDB\Driver\Server
;
use
MongoDB\Exception\RuntimeException
;
use
MongoDB\Exception\InvalidArgumentException
;
use
MongoDB\Exception\InvalidArgumentException
;
use
MongoDB\Model\CollectionInfoCommandIterator
;
use
MongoDB\Model\CollectionInfoCommandIterator
;
use
MongoDB\Model\CollectionInfoIterator
;
use
MongoDB\Model\CollectionInfoIterator
;
...
...
src/Operation/ListDatabases.php
View file @
f8929259
...
@@ -46,6 +46,7 @@ class ListDatabases implements Executable
...
@@ -46,6 +46,7 @@ class ListDatabases implements Executable
* @see Executable::execute()
* @see Executable::execute()
* @param Server $server
* @param Server $server
* @return DatabaseInfoIterator
* @return DatabaseInfoIterator
* @throws UnexpectedValueException if the command response was malformed
*/
*/
public
function
execute
(
Server
$server
)
public
function
execute
(
Server
$server
)
{
{
...
...
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