Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-mongodb
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
laravel-mongodb
Commits
a749be34
Commit
a749be34
authored
Feb 04, 2016
by
Jens Segers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix docblocks, closes #723
parent
fb1e4a02
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
Connection.php
src/Jenssegers/Mongodb/Connection.php
+7
-7
No files found.
src/Jenssegers/Mongodb/Connection.php
View file @
a749be34
...
...
@@ -7,14 +7,14 @@ class Connection extends \Illuminate\Database\Connection
/**
* The MongoDB database handler.
*
* @var
MongoDB
* @var
\MongoDB\Database
*/
protected
$db
;
/**
* The MongoDB connection handler.
*
* @var
MongoDB
* @var
\MongoDB\Client
*/
protected
$connection
;
...
...
@@ -56,7 +56,7 @@ class Connection extends \Illuminate\Database\Connection
* Begin a fluent query against a database collection.
*
* @param string $collection
* @return QueryBuilder
* @return Query
\
Builder
*/
public
function
collection
(
$collection
)
{
...
...
@@ -71,7 +71,7 @@ class Connection extends \Illuminate\Database\Connection
* Begin a fluent query against a database collection.
*
* @param string $table
* @return QueryBuilder
* @return Query
\
Builder
*/
public
function
table
(
$table
)
{
...
...
@@ -82,7 +82,7 @@ class Connection extends \Illuminate\Database\Connection
* Get a MongoDB collection.
*
* @param string $name
* @return
MongoDB
* @return
Collection
*/
public
function
getCollection
(
$name
)
{
...
...
@@ -102,7 +102,7 @@ class Connection extends \Illuminate\Database\Connection
/**
* Get the MongoDB database object.
*
* @return
MongoDB
* @return
\MongoDB\Database
*/
public
function
getMongoDB
()
{
...
...
@@ -112,7 +112,7 @@ class Connection extends \Illuminate\Database\Connection
/**
* return MongoDB object.
*
* @return
MongoDB
* @return
\MongoDB\Client
*/
public
function
getMongoClient
()
{
...
...
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