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
470a904b
Commit
470a904b
authored
Oct 27, 2016
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PHPLIB-186: Document getManager() methods
parent
ec1ae3ae
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
103 additions
and
1 deletion
+103
-1
MongoDBClient.txt
docs/reference/class/MongoDBClient.txt
+1
-0
MongoDBCollection.txt
docs/reference/class/MongoDBCollection.txt
+1
-0
MongoDBDatabase.txt
docs/reference/class/MongoDBDatabase.txt
+2
-1
MongoDBClient-getManager.txt
docs/reference/method/MongoDBClient-getManager.txt
+33
-0
MongoDBCollection-getManager.txt
docs/reference/method/MongoDBCollection-getManager.txt
+33
-0
MongoDBDatabase-getManager.txt
docs/reference/method/MongoDBDatabase-getManager.txt
+33
-0
No files found.
docs/reference/class/MongoDBClient.txt
View file @
470a904b
...
...
@@ -31,6 +31,7 @@ Methods
/reference/method/MongoDBClient__construct
/reference/method/MongoDBClient__get
/reference/method/MongoDBClient-dropDatabase
/reference/method/MongoDBClient-getManager
/reference/method/MongoDBClient-listDatabases
/reference/method/MongoDBClient-selectCollection
/reference/method/MongoDBClient-selectDatabase
docs/reference/class/MongoDBCollection.txt
View file @
470a904b
...
...
@@ -75,6 +75,7 @@ Methods
/reference/method/MongoDBCollection-findOneAndUpdate
/reference/method/MongoDBCollection-getCollectionName
/reference/method/MongoDBCollection-getDatabaseName
/reference/method/MongoDBCollection-getManager
/reference/method/MongoDBCollection-getNamespace
/reference/method/MongoDBCollection-insertMany
/reference/method/MongoDBCollection-insertOne
...
...
docs/reference/class/MongoDBDatabase.txt
View file @
470a904b
...
...
@@ -50,7 +50,8 @@ Methods
/reference/method/MongoDBDatabase-createCollection
/reference/method/MongoDBDatabase-drop
/reference/method/MongoDBDatabase-dropCollection
/reference/method/MongoDBDatabase-getDatabaseName
/reference/method/MongoDBDatabase-getDatabaseName
/reference/method/MongoDBDatabase-getManager
/reference/method/MongoDBDatabase-listCollections
/reference/method/MongoDBDatabase-selectCollection
/reference/method/MongoDBDatabase-withOptions
...
...
docs/reference/method/MongoDBClient-getManager.txt
0 → 100644
View file @
470a904b
=============================
MongoDB\\Client::getManager()
=============================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. phpmethod:: MongoDB\\Client::getManager()
Accessor for the
:php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` used by this
:phpclass:`Client <MongoDB\\Client>`.
.. code-block:: php
function getManager(): MongoDB\Manager
:returns:
A :php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` object.
.. seealso::
- :phpmethod:`MongoDB\\Collection::getManager()`
- :phpmethod:`MongoDB\\Database::getManager()`
docs/reference/method/MongoDBCollection-getManager.txt
0 → 100644
View file @
470a904b
=================================
MongoDB\\Collection::getManager()
=================================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. phpmethod:: MongoDB\\Collection::getManager()
Accessor for the
:php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` used by this
:phpclass:`Client <MongoDB\\Collection>`.
.. code-block:: php
function getManager(): MongoDB\Manager
:returns:
A :php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` object.
.. seealso::
- :phpmethod:`MongoDB\\Client::getManager()`
- :phpmethod:`MongoDB\\Database::getManager()`
docs/reference/method/MongoDBDatabase-getManager.txt
0 → 100644
View file @
470a904b
===============================
MongoDB\\Database::getManager()
===============================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. phpmethod:: MongoDB\\Database::getManager()
Accessor for the
:php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` used by this
:phpclass:`Client <MongoDB\\Database>`.
.. code-block:: php
function getManager(): MongoDB\Manager
:returns:
A :php:`MongoDB\\Driver\\Manager <class.mongodb-driver-manager>` object.
.. seealso::
- :phpmethod:`MongoDB\\Client::getManager()`
- :phpmethod:`MongoDB\\Collection::getManager()`
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