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
b3286bd6
Commit
b3286bd6
authored
9 years ago
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix doc block spacing
parent
31976928
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
17 deletions
+17
-17
CollectionInfo.php
src/Model/CollectionInfo.php
+4
-4
DatabaseInfo.php
src/Model/DatabaseInfo.php
+4
-4
IndexInfo.php
src/Model/IndexInfo.php
+4
-4
IndexInput.php
src/Model/IndexInput.php
+5
-5
No files found.
src/Model/CollectionInfo.php
View file @
b3286bd6
...
...
@@ -18,10 +18,10 @@ class CollectionInfo
private
$info
;
/**
* Constructor.
*
* @param array $info Collection info
*/
* Constructor.
*
* @param array $info Collection info
*/
public
function
__construct
(
array
$info
)
{
$this
->
info
=
$info
;
...
...
This diff is collapsed.
Click to expand it.
src/Model/DatabaseInfo.php
View file @
b3286bd6
...
...
@@ -17,10 +17,10 @@ class DatabaseInfo
private
$info
;
/**
* Constructor.
*
* @param array $info Database info
*/
* Constructor.
*
* @param array $info Database info
*/
public
function
__construct
(
array
$info
)
{
$this
->
info
=
$info
;
...
...
This diff is collapsed.
Click to expand it.
src/Model/IndexInfo.php
View file @
b3286bd6
...
...
@@ -25,10 +25,10 @@ class IndexInfo implements ArrayAccess
private
$info
;
/**
* Constructor.
*
* @param array $info Index info
*/
* Constructor.
*
* @param array $info Index info
*/
public
function
__construct
(
array
$info
)
{
$this
->
info
=
$info
;
...
...
This diff is collapsed.
Click to expand it.
src/Model/IndexInput.php
View file @
b3286bd6
...
...
@@ -20,11 +20,11 @@ class IndexInput implements Serializable
private
$index
;
/**
* Constructor.
*
* @param array $index Index specification
* @throws InvalidArgumentException
*/
* Constructor.
*
* @param array $index Index specification
* @throws InvalidArgumentException
*/
public
function
__construct
(
array
$index
)
{
if
(
!
isset
(
$index
[
'key'
]))
{
...
...
This diff is collapsed.
Click to expand it.
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