6
6
use Illuminate \Support \Arr ;
7
7
use InvalidArgumentException ;
8
8
use MongoDB \Client ;
9
+ use MongoDB \Database ;
9
10
10
11
class Connection extends BaseConnection
11
12
{
12
13
/**
13
14
* The MongoDB database handler.
14
15
*
15
- * @var \MongoDB\ Database
16
+ * @var Database
16
17
*/
17
18
protected $ db ;
18
19
19
20
/**
20
21
* The MongoDB connection handler.
21
22
*
22
- * @var \MongoDB\ Client
23
+ * @var Client
23
24
*/
24
25
protected $ connection ;
25
26
26
27
/**
27
28
* Create a new database connection instance.
28
29
*
29
- * @param array $config
30
+ * @param array $config
30
31
*/
31
32
public function __construct (array $ config )
32
33
{
@@ -57,7 +58,7 @@ public function __construct(array $config)
57
58
/**
58
59
* Begin a fluent query against a database collection.
59
60
*
60
- * @param string $collection
61
+ * @param string $collection
61
62
* @return Query\Builder
62
63
*/
63
64
public function collection ($ collection )
@@ -70,8 +71,8 @@ public function collection($collection)
70
71
/**
71
72
* Begin a fluent query against a database collection.
72
73
*
73
- * @param string $table
74
- * @param string|null $as
74
+ * @param string $table
75
+ * @param string|null $as
75
76
* @return Query\Builder
76
77
*/
77
78
public function table ($ table , $ as = null )
@@ -82,7 +83,7 @@ public function table($table, $as = null)
82
83
/**
83
84
* Get a MongoDB collection.
84
85
*
85
- * @param string $name
86
+ * @param string $name
86
87
* @return Collection
87
88
*/
88
89
public function getCollection ($ name )
@@ -101,7 +102,7 @@ public function getSchemaBuilder()
101
102
/**
102
103
* Get the MongoDB database object.
103
104
*
104
- * @return \MongoDB\ Database
105
+ * @return Database
105
106
*/
106
107
public function getMongoDB ()
107
108
{
@@ -111,7 +112,7 @@ public function getMongoDB()
111
112
/**
112
113
* return MongoDB object.
113
114
*
114
- * @return \MongoDB\ Client
115
+ * @return Client
115
116
*/
116
117
public function getMongoClient ()
117
118
{
@@ -129,12 +130,13 @@ public function getDatabaseName()
129
130
/**
130
131
* Get the name of the default database based on db config or try to detect it from dsn.
131
132
*
132
- * @param string $dsn
133
- * @param array $config
133
+ * @param string $dsn
134
+ * @param array $config
134
135
* @return string
136
+ *
135
137
* @throws InvalidArgumentException
136
138
*/
137
- protected function getDefaultDatabaseName ($ dsn , $ config )
139
+ protected function getDefaultDatabaseName (string $ dsn , array $ config ): string
138
140
{
139
141
if (empty ($ config ['database ' ])) {
140
142
if (preg_match ('/^mongodb(?:[+]srv)?: \\/ \\/.+ \\/([^?&]+)/s ' , $ dsn , $ matches )) {
@@ -150,12 +152,12 @@ protected function getDefaultDatabaseName($dsn, $config)
150
152
/**
151
153
* Create a new MongoDB connection.
152
154
*
153
- * @param string $dsn
154
- * @param array $config
155
- * @param array $options
156
- * @return \MongoDB\ Client
155
+ * @param string $dsn
156
+ * @param array $config
157
+ * @param array $options
158
+ * @return Client
157
159
*/
158
- protected function createConnection ($ dsn , array $ config , array $ options )
160
+ protected function createConnection ($ dsn , array $ config , array $ options ): Client
159
161
{
160
162
// By default driver options is an empty array.
161
163
$ driverOptions = [];
@@ -186,7 +188,7 @@ public function disconnect()
186
188
/**
187
189
* Determine if the given configuration array has a dsn string.
188
190
*
189
- * @param array $config
191
+ * @param array $config
190
192
* @return bool
191
193
*/
192
194
protected function hasDsnString (array $ config )
@@ -197,21 +199,21 @@ protected function hasDsnString(array $config)
197
199
/**
198
200
* Get the DSN string form configuration.
199
201
*
200
- * @param array $config
202
+ * @param array $config
201
203
* @return string
202
204
*/
203
- protected function getDsnString (array $ config )
205
+ protected function getDsnString (array $ config ): string
204
206
{
205
207
return $ config ['dsn ' ];
206
208
}
207
209
208
210
/**
209
211
* Get the DSN string for a host / port configuration.
210
212
*
211
- * @param array $config
213
+ * @param array $config
212
214
* @return string
213
215
*/
214
- protected function getHostDsn (array $ config )
216
+ protected function getHostDsn (array $ config ): string
215
217
{
216
218
// Treat host option as array of hosts
217
219
$ hosts = is_array ($ config ['host ' ]) ? $ config ['host ' ] : [$ config ['host ' ]];
@@ -232,10 +234,10 @@ protected function getHostDsn(array $config)
232
234
/**
233
235
* Create a DSN string from a configuration.
234
236
*
235
- * @param array $config
237
+ * @param array $config
236
238
* @return string
237
239
*/
238
- protected function getDsn (array $ config )
240
+ protected function getDsn (array $ config ): string
239
241
{
240
242
return $ this ->hasDsnString ($ config )
241
243
? $ this ->getDsnString ($ config )
@@ -285,7 +287,7 @@ protected function getDefaultSchemaGrammar()
285
287
/**
286
288
* Set database.
287
289
*
288
- * @param \MongoDB\Database $db
290
+ * @param \MongoDB\Database $db
289
291
*/
290
292
public function setDatabase (\MongoDB \Database $ db )
291
293
{
@@ -295,12 +297,12 @@ public function setDatabase(\MongoDB\Database $db)
295
297
/**
296
298
* Dynamically pass methods to the connection.
297
299
*
298
- * @param string $method
299
- * @param array $parameters
300
+ * @param string $method
301
+ * @param array $parameters
300
302
* @return mixed
301
303
*/
302
304
public function __call ($ method , $ parameters )
303
305
{
304
- return call_user_func_array ([ $ this ->db , $ method], $ parameters );
306
+ return $ this ->db -> $ method(... $ parameters );
305
307
}
306
308
}
0 commit comments