@@ -200,7 +200,7 @@ |
||
200 | 200 | } |
201 | 201 | |
202 | 202 | /** |
203 | - * @param $id |
|
203 | + * @param string|null $id |
|
204 | 204 | * @throws MongoException |
205 | 205 | */ |
206 | 206 | private function createObjectID($id) |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * http://php.net/manual/en/mongoresultexception.getdocument.php |
26 | 26 | * @return array <p>The full result document as an array, including partial data if available and additional keys.</p> |
27 | 27 | */ |
28 | - public function getDocument () {} |
|
28 | + public function getDocument() {} |
|
29 | 29 | |
30 | 30 | public $document; |
31 | 31 |
@@ -18,13 +18,16 @@ |
||
18 | 18 | * @link http://php.net/manual/en/class.mongoresultexception.php#mongoresultexception.props.document |
19 | 19 | * |
20 | 20 | */ |
21 | -class MongoResultException extends MongoException { |
|
21 | +class MongoResultException extends MongoException |
|
22 | +{ |
|
22 | 23 | /** |
23 | 24 | * Retrieve the full result document |
24 | 25 | * http://php.net/manual/en/mongoresultexception.getdocument.php |
25 | 26 | * @return array <p>The full result document as an array, including partial data if available and additional keys.</p> |
26 | 27 | */ |
27 | - public function getDocument () {} |
|
28 | + public function getDocument () |
|
29 | + { |
|
30 | +} |
|
28 | 31 | |
29 | 32 | public $document; |
30 | 33 |
@@ -15,7 +15,6 @@ |
||
15 | 15 | |
16 | 16 | use Alcaeus\MongoDbAdapter\TypeInterface; |
17 | 17 | use MongoDB\BSON\Binary; |
18 | -use MongoDB\BSON\Type; |
|
19 | 18 | |
20 | 19 | class MongoBinData implements TypeInterface |
21 | 20 | { |
@@ -72,7 +72,7 @@ |
||
72 | 72 | protected $readPreference = []; |
73 | 73 | |
74 | 74 | /** |
75 | - * @return Cursor |
|
75 | + * @return \Traversable |
|
76 | 76 | */ |
77 | 77 | abstract protected function ensureCursor(); |
78 | 78 |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function current() |
120 | 120 | { |
121 | - if (! $this->startedIterating) { |
|
121 | + if ( ! $this->startedIterating) { |
|
122 | 122 | return null; |
123 | 123 | } |
124 | 124 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public function key() |
139 | 139 | { |
140 | - if (! $this->startedIterating) { |
|
140 | + if ( ! $this->startedIterating) { |
|
141 | 141 | return null; |
142 | 142 | } |
143 | 143 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | */ |
154 | 154 | public function next() |
155 | 155 | { |
156 | - if (! $this->startedIterating) { |
|
156 | + if ( ! $this->startedIterating) { |
|
157 | 157 | $this->ensureIterator(); |
158 | 158 | $this->startedIterating = true; |
159 | 159 | } else { |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | */ |
187 | 187 | public function valid() |
188 | 188 | { |
189 | - if (! $this->startedIterating) { |
|
189 | + if ( ! $this->startedIterating) { |
|
190 | 190 | return false; |
191 | 191 | } |
192 | 192 |
@@ -201,7 +201,7 @@ |
||
201 | 201 | * @link http://www.php.net/manual/en/mongocursor.hasnext.php |
202 | 202 | * @throws MongoConnectionException |
203 | 203 | * @throws MongoCursorTimeoutException |
204 | - * @return bool Returns true if there is another element |
|
204 | + * @return boolean|null Returns true if there is another element |
|
205 | 205 | */ |
206 | 206 | public function hasNext() |
207 | 207 | { |
@@ -15,7 +15,6 @@ |
||
15 | 15 | |
16 | 16 | use Alcaeus\MongoDbAdapter\AbstractCursor; |
17 | 17 | use MongoDB\Driver\Cursor; |
18 | -use MongoDB\Driver\ReadPreference; |
|
19 | 18 | use MongoDB\Operation\Find; |
20 | 19 | |
21 | 20 | /** |
@@ -394,7 +394,7 @@ discard block |
||
394 | 394 | */ |
395 | 395 | protected function convertCursorType() |
396 | 396 | { |
397 | - if (! $this->tailable) { |
|
397 | + if ( ! $this->tailable) { |
|
398 | 398 | return null; |
399 | 399 | } |
400 | 400 | |
@@ -435,7 +435,7 @@ discard block |
||
435 | 435 | protected function wrapTraversable(\Traversable $traversable) |
436 | 436 | { |
437 | 437 | foreach ($traversable as $key => $value) { |
438 | - if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || !is_object($value->_id))) { |
|
438 | + if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || ! is_object($value->_id))) { |
|
439 | 439 | $key = (string) $value->_id; |
440 | 440 | } |
441 | 441 | yield $key => $value; |
@@ -126,6 +126,9 @@ |
||
126 | 126 | ); |
127 | 127 | } |
128 | 128 | |
129 | + /** |
|
130 | + * @param resource $handle |
|
131 | + */ |
|
129 | 132 | private function writeFromRessource($handle) |
130 | 133 | { |
131 | 134 |
@@ -75,7 +75,7 @@ |
||
75 | 75 | $filename = 'file'; |
76 | 76 | } |
77 | 77 | |
78 | - if (! $handle = fopen($filename, 'w')) { |
|
78 | + if ( ! $handle = fopen($filename, 'w')) { |
|
79 | 79 | trigger_error(E_ERROR, 'Can not open the destination file'); |
80 | 80 | return 0; |
81 | 81 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * Returns the address being used by this for slaveOkay reads |
49 | 49 | * |
50 | 50 | * @link http://php.net/manual/en/mongo.getslave.php |
51 | - * @return bool The address of the secondary this connection is using for |
|
51 | + * @return boolean|null The address of the secondary this connection is using for |
|
52 | 52 | * reads. This returns NULL if this is not connected to a replica set or not yet |
53 | 53 | * initialized. |
54 | 54 | */ |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * Get slaveOkay setting for this connection |
62 | 62 | * |
63 | 63 | * @link http://php.net/manual/en/mongo.getslaveokay.php |
64 | - * @return bool Returns the value of slaveOkay for this instance. |
|
64 | + * @return boolean|null Returns the value of slaveOkay for this instance. |
|
65 | 65 | */ |
66 | 66 | public function getSlaveOkay() |
67 | 67 | { |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @link http://www.php.net/manual/en/mongo.pairconnect.php |
75 | 75 | * @throws MongoConnectionException |
76 | - * @return boolean |
|
76 | + * @return boolean|null |
|
77 | 77 | * |
78 | 78 | * @deprecated Pass a string of the form "mongodb://server1,server2" to the constructor instead of using this method. |
79 | 79 | */ |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @link http://php.net/manual/en/mongo.setslaveokay.php |
101 | 101 | * @param bool $ok |
102 | - * @return bool returns the former value of slaveOkay for this instance. |
|
102 | + * @return boolean|null returns the former value of slaveOkay for this instance. |
|
103 | 103 | */ |
104 | 104 | public function setSlaveOkay ($ok) |
105 | 105 | { |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @link http://php.net/manual/en/mongo.setpoolsize.php |
113 | 113 | * @param $size <p>The max number of connections future pools will be able to create. Negative numbers mean that the pool will spawn an infinite number of connections.</p> |
114 | - * @return bool Returns the former value of pool size. |
|
114 | + * @return boolean|null Returns the former value of pool size. |
|
115 | 115 | * @deprecated Relying on this feature is highly discouraged. Please use MongoPool::setSize() instead. |
116 | 116 | */ |
117 | 117 | public function setPoolSize($size) |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param string $username A username used to identify the connection. |
127 | 127 | * @param string $password A password used to identify the connection. |
128 | 128 | * @throws MongoConnectionException |
129 | - * @return boolean If the connection was successful. |
|
129 | + * @return boolean|null If the connection was successful. |
|
130 | 130 | * @deprecated Pass array("persist" => $id) to the constructor instead of using this method. |
131 | 131 | */ |
132 | 132 | public function persistConnect($username = "", $password = "") |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * @param string $username A username used to identify the connection. |
142 | 142 | * @param string $password A password used to identify the connection. |
143 | 143 | * @throws MongoConnectionException |
144 | - * @return boolean If the connection was successful. |
|
144 | + * @return boolean|null If the connection was successful. |
|
145 | 145 | * @deprecated Pass "mongodb://server1,server2" and array("persist" => $id) to the constructor instead of using this method. |
146 | 146 | */ |
147 | 147 | public function pairPersistConnect($username = "", $password = "") |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * |
155 | 155 | * @link http://www.php.net/manual/en/mongo.connectutil.php |
156 | 156 | * @throws MongoConnectionException |
157 | - * @return boolean If the connection was successful. |
|
157 | + * @return boolean|null If the connection was successful. |
|
158 | 158 | */ |
159 | 159 | protected function connectUtil() |
160 | 160 | { |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * Creates a database error on the database. |
202 | 202 | * |
203 | 203 | * @link http://www.php.net/manual/en/mongo.forceerror.php |
204 | - * @return boolean The database response. |
|
204 | + * @return boolean|null The database response. |
|
205 | 205 | * @deprecated Use MongoDB::forceError() instead. |
206 | 206 | */ |
207 | 207 | public function forceError() |
@@ -101,7 +101,7 @@ |
||
101 | 101 | * @param bool $ok |
102 | 102 | * @return bool returns the former value of slaveOkay for this instance. |
103 | 103 | */ |
104 | - public function setSlaveOkay ($ok) |
|
104 | + public function setSlaveOkay($ok) |
|
105 | 105 | { |
106 | 106 | $this->notImplemented(); |
107 | 107 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @var MongoDB |
34 | 34 | */ |
35 | - public $db = NULL; |
|
35 | + public $db = null; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @var string |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | foreach (func_get_args() as $operator) { |
134 | 134 | $i++; |
135 | 135 | if (! is_array($operator)) { |
136 | - trigger_error("Argument $i is not an array", E_WARNING); |
|
136 | + trigger_error("argument $i is not an array", E_WARNING); |
|
137 | 137 | return; |
138 | 138 | } |
139 | 139 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * @param bool $scan_data Only validate indices, not the base collection. |
235 | 235 | * @return array Returns the database's evaluation of this object. |
236 | 236 | */ |
237 | - public function validate($scan_data = FALSE) |
|
237 | + public function validate($scan_data = false) |
|
238 | 238 | { |
239 | 239 | $command = [ |
240 | 240 | 'validate' => $this->name, |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @link http://www.php.net/manual/en/mongocollection.aggregate.php |
124 | 124 | * @param array $pipeline |
125 | 125 | * @param array $op |
126 | - * @return array |
|
126 | + * @return null|Traversable |
|
127 | 127 | */ |
128 | 128 | public function aggregate(array $pipeline, array $op = []) |
129 | 129 | { |
@@ -923,6 +923,9 @@ discard block |
||
923 | 923 | return null; |
924 | 924 | } |
925 | 925 | |
926 | + /** |
|
927 | + * @param string $name |
|
928 | + */ |
|
926 | 929 | private function checkCollectionName($name) |
927 | 930 | { |
928 | 931 | if (empty($name)) { |
@@ -126,14 +126,14 @@ discard block |
||
126 | 126 | */ |
127 | 127 | public function aggregate(array $pipeline, array $op = []) |
128 | 128 | { |
129 | - if (! TypeConverter::isNumericArray($pipeline)) { |
|
129 | + if ( ! TypeConverter::isNumericArray($pipeline)) { |
|
130 | 130 | $pipeline = []; |
131 | 131 | $options = []; |
132 | 132 | |
133 | 133 | $i = 0; |
134 | 134 | foreach (func_get_args() as $operator) { |
135 | 135 | $i++; |
136 | - if (! is_array($operator)) { |
|
136 | + if ( ! is_array($operator)) { |
|
137 | 137 | trigger_error("Argument $i is not an array", E_WARNING); |
138 | 138 | return; |
139 | 139 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | ]; |
181 | 181 | |
182 | 182 | // Convert cursor option |
183 | - if (! isset($options['cursor'])) { |
|
183 | + if ( ! isset($options['cursor'])) { |
|
184 | 184 | $options['cursor'] = new \stdClass(); |
185 | 185 | } |
186 | 186 | |
@@ -266,12 +266,12 @@ discard block |
||
266 | 266 | */ |
267 | 267 | public function insert(&$a, array $options = []) |
268 | 268 | { |
269 | - if (! $this->ensureDocumentHasMongoId($a)) { |
|
269 | + if ( ! $this->ensureDocumentHasMongoId($a)) { |
|
270 | 270 | trigger_error(sprintf('%s(): expects parameter %d to be an array or object, %s given', __METHOD__, 1, gettype($a)), E_USER_WARNING); |
271 | 271 | return; |
272 | 272 | } |
273 | 273 | |
274 | - if (! count((array)$a)) { |
|
274 | + if ( ! count((array) $a)) { |
|
275 | 275 | throw new \MongoException('document must be an array or object'); |
276 | 276 | } |
277 | 277 | |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | throw ExceptionConverter::toLegacy($e); |
285 | 285 | } |
286 | 286 | |
287 | - if (! $result->isAcknowledged()) { |
|
287 | + if ( ! $result->isAcknowledged()) { |
|
288 | 288 | return true; |
289 | 289 | } |
290 | 290 | |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | |
316 | 316 | foreach ($a as $key => $item) { |
317 | 317 | try { |
318 | - if (! $this->ensureDocumentHasMongoId($a[$key])) { |
|
318 | + if ( ! $this->ensureDocumentHasMongoId($a[$key])) { |
|
319 | 319 | if ($continueOnError) { |
320 | 320 | unset($a[$key]); |
321 | 321 | } else { |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | throw ExceptionConverter::toLegacy($e, 'MongoResultException'); |
340 | 340 | } |
341 | 341 | |
342 | - if (! $result->isAcknowledged()) { |
|
342 | + if ( ! $result->isAcknowledged()) { |
|
343 | 343 | return true; |
344 | 344 | } |
345 | 345 | |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | * @throws MongoCursorException |
364 | 364 | * @return boolean |
365 | 365 | */ |
366 | - public function update(array $criteria , array $newobj, array $options = []) |
|
366 | + public function update(array $criteria, array $newobj, array $options = []) |
|
367 | 367 | { |
368 | 368 | $multiple = isset($options['multiple']) ? $options['multiple'] : false; |
369 | 369 | $method = $multiple ? 'updateMany' : 'updateOne'; |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | throw ExceptionConverter::toLegacy($e); |
381 | 381 | } |
382 | 382 | |
383 | - if (! $result->isAcknowledged()) { |
|
383 | + if ( ! $result->isAcknowledged()) { |
|
384 | 384 | return true; |
385 | 385 | } |
386 | 386 | |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | */ |
408 | 408 | public function remove(array $criteria = [], array $options = []) |
409 | 409 | { |
410 | - $multiple = isset($options['justOne']) ? !$options['justOne'] : true; |
|
410 | + $multiple = isset($options['justOne']) ? ! $options['justOne'] : true; |
|
411 | 411 | $method = $multiple ? 'deleteMany' : 'deleteOne'; |
412 | 412 | |
413 | 413 | try { |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | throw ExceptionConverter::toLegacy($e); |
421 | 421 | } |
422 | 422 | |
423 | - if (! $result->isAcknowledged()) { |
|
423 | + if ( ! $result->isAcknowledged()) { |
|
424 | 424 | return true; |
425 | 425 | } |
426 | 426 | |
@@ -492,7 +492,7 @@ discard block |
||
492 | 492 | |
493 | 493 | $options['projection'] = is_array($fields) ? TypeConverter::fromLegacy($fields) : []; |
494 | 494 | |
495 | - if (! \MongoDB\is_first_key_operator($update)) { |
|
495 | + if ( ! \MongoDB\is_first_key_operator($update)) { |
|
496 | 496 | $document = $this->collection->findOneAndReplace($query, $update, $options); |
497 | 497 | } else { |
498 | 498 | $document = $this->collection->findOneAndUpdate($query, $update, $options); |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | $keys = (array) $keys; |
560 | 560 | } |
561 | 561 | |
562 | - if (! is_array($keys) || ! count($keys)) { |
|
562 | + if ( ! is_array($keys) || ! count($keys)) { |
|
563 | 563 | throw new MongoException('index specification has no elements'); |
564 | 564 | } |
565 | 565 | |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | } |
576 | 576 | |
577 | 577 | foreach ($indexes as $index) { |
578 | - if (! empty($options['name']) && $index->getName() === $options['name']) { |
|
578 | + if ( ! empty($options['name']) && $index->getName() === $options['name']) { |
|
579 | 579 | throw new \MongoResultException(sprintf('index with name: %s already exists', $index->getName())); |
580 | 580 | } |
581 | 581 | |
@@ -636,7 +636,7 @@ discard block |
||
636 | 636 | { |
637 | 637 | if (is_string($keys)) { |
638 | 638 | $indexName = $keys; |
639 | - if (! preg_match('#_-?1$#', $indexName)) { |
|
639 | + if ( ! preg_match('#_-?1$#', $indexName)) { |
|
640 | 640 | $indexName .= '_1'; |
641 | 641 | } |
642 | 642 | } elseif (is_array($keys)) { |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | $this->convertWriteConcernOptions($options) |
734 | 734 | ); |
735 | 735 | |
736 | - if (! $result->isAcknowledged()) { |
|
736 | + if ( ! $result->isAcknowledged()) { |
|
737 | 737 | return true; |
738 | 738 | } |
739 | 739 | |
@@ -767,13 +767,13 @@ discard block |
||
767 | 767 | if ($document_or_id instanceof \MongoId) { |
768 | 768 | $id = $document_or_id; |
769 | 769 | } elseif (is_object($document_or_id)) { |
770 | - if (! isset($document_or_id->_id)) { |
|
770 | + if ( ! isset($document_or_id->_id)) { |
|
771 | 771 | return null; |
772 | 772 | } |
773 | 773 | |
774 | 774 | $id = $document_or_id->_id; |
775 | 775 | } elseif (is_array($document_or_id)) { |
776 | - if (! isset($document_or_id['_id'])) { |
|
776 | + if ( ! isset($document_or_id['_id'])) { |
|
777 | 777 | return null; |
778 | 778 | } |
779 | 779 | |
@@ -816,14 +816,14 @@ discard block |
||
816 | 816 | $command = [ |
817 | 817 | 'group' => [ |
818 | 818 | 'ns' => $this->name, |
819 | - '$reduce' => (string)$reduce, |
|
819 | + '$reduce' => (string) $reduce, |
|
820 | 820 | 'initial' => $initial, |
821 | 821 | 'cond' => $condition, |
822 | 822 | ], |
823 | 823 | ]; |
824 | 824 | |
825 | 825 | if ($keys instanceof MongoCode) { |
826 | - $command['group']['$keyf'] = (string)$keys; |
|
826 | + $command['group']['$keyf'] = (string) $keys; |
|
827 | 827 | } else { |
828 | 828 | $command['group']['key'] = $keys; |
829 | 829 | } |
@@ -832,7 +832,7 @@ discard block |
||
832 | 832 | } |
833 | 833 | if (array_key_exists('finalize', $condition)) { |
834 | 834 | if ($condition['finalize'] instanceof MongoCode) { |
835 | - $condition['finalize'] = (string)$condition['finalize']; |
|
835 | + $condition['finalize'] = (string) $condition['finalize']; |
|
836 | 836 | } |
837 | 837 | $command['group']['finalize'] = $condition['finalize']; |
838 | 838 | } |
@@ -886,11 +886,11 @@ discard block |
||
886 | 886 | $options['w'] = ($options['safe']) ? 1 : 0; |
887 | 887 | } |
888 | 888 | |
889 | - if (isset($options['wtimeout']) && !isset($options['wTimeoutMS'])) { |
|
889 | + if (isset($options['wtimeout']) && ! isset($options['wTimeoutMS'])) { |
|
890 | 890 | $options['wTimeoutMS'] = $options['wtimeout']; |
891 | 891 | } |
892 | 892 | |
893 | - if (isset($options['w']) || !isset($options['wTimeoutMS'])) { |
|
893 | + if (isset($options['w']) || ! isset($options['wTimeoutMS'])) { |
|
894 | 894 | $collectionWriteConcern = $this->getWriteConcern(); |
895 | 895 | $writeConcern = $this->createWriteConcernFromParameters( |
896 | 896 | isset($options['w']) ? $options['w'] : $collectionWriteConcern['w'], |
@@ -923,7 +923,7 @@ discard block |
||
923 | 923 | }; |
924 | 924 | |
925 | 925 | if (is_array($document)) { |
926 | - if (! isset($document['_id'])) { |
|
926 | + if ( ! isset($document['_id'])) { |
|
927 | 927 | $document['_id'] = new \MongoId(); |
928 | 928 | } |
929 | 929 | |
@@ -933,12 +933,12 @@ discard block |
||
933 | 933 | } elseif (is_object($document)) { |
934 | 934 | $reflectionObject = new \ReflectionObject($document); |
935 | 935 | foreach ($reflectionObject->getProperties() as $property) { |
936 | - if (! $property->isPublic()) { |
|
936 | + if ( ! $property->isPublic()) { |
|
937 | 937 | throw new \MongoException('zero-length keys are not allowed, did you use $ with double quotes?'); |
938 | 938 | } |
939 | 939 | } |
940 | 940 | |
941 | - if (! isset($document->_id)) { |
|
941 | + if ( ! isset($document->_id)) { |
|
942 | 942 | $document->_id = new \MongoId(); |
943 | 943 | } |
944 | 944 |
@@ -13,6 +13,7 @@ |
||
13 | 13 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
14 | 14 | */ |
15 | 15 | |
16 | -class MongoConnectionException extends MongoException { |
|
16 | +class MongoConnectionException extends MongoException |
|
17 | +{ |
|
17 | 18 | |
18 | 19 | } |