@@ -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) |
@@ -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() |
@@ -17,6 +17,7 @@ |
||
| 17 | 17 | * <p>(PECL mongo >= 1.5.0)</p> |
| 18 | 18 | * @link http://php.net/manual/en/class.mongoduplicatekeyexception.php |
| 19 | 19 | */ |
| 20 | -class MongoDuplicateKeyException extends MongoWriteConcernException { |
|
| 20 | +class MongoDuplicateKeyException extends MongoWriteConcernException |
|
| 21 | +{ |
|
| 21 | 22 | |
| 22 | 23 | } |
@@ -17,4 +17,6 @@ |
||
| 17 | 17 | * <p>(PECL mongo >= 1.5.0)</p> |
| 18 | 18 | * @link http://php.net/manual/en/class.mongoexecutiontimeoutexception.php |
| 19 | 19 | */ |
| 20 | -class MongoExecutionTimeoutException extends MongoException {} |
|
| 20 | +class MongoExecutionTimeoutException extends MongoException |
|
| 21 | +{ |
|
| 22 | +} |
|
@@ -16,4 +16,6 @@ |
||
| 16 | 16 | /** |
| 17 | 17 | * <p>(PECL mongo >= 1.5.0)</p> |
| 18 | 18 | */ |
| 19 | -class MongoProtocolException extends MongoException {} |
|
| 19 | +class MongoProtocolException extends MongoException |
|
| 20 | +{ |
|
| 21 | +} |
|
@@ -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 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | * |
| 36 | 36 | * @link http://php.net/manual/en/mongopool.setsize.php |
| 37 | 37 | * @param int $size |
| 38 | - * @return boolean Returns the former value of pool size |
|
| 38 | + * @return integer Returns the former value of pool size |
|
| 39 | 39 | */ |
| 40 | 40 | public static function setSize($size) |
| 41 | 41 | { |
@@ -540,7 +540,8 @@ |
||
| 540 | 540 | * @param bool $includeSystemCollections |
| 541 | 541 | * @return Closure |
| 542 | 542 | */ |
| 543 | - private function getSystemCollectionFilterClosure($includeSystemCollections = false) { |
|
| 543 | + private function getSystemCollectionFilterClosure($includeSystemCollections = false) |
|
| 544 | + { |
|
| 544 | 545 | return function (CollectionInfo $collectionInfo) use ($includeSystemCollections) { |
| 545 | 546 | return $includeSystemCollections || ! preg_match('#^system\.#', $collectionInfo->getName()); |
| 546 | 547 | }; |
@@ -511,6 +511,9 @@ discard block |
||
| 511 | 511 | } |
| 512 | 512 | } |
| 513 | 513 | |
| 514 | + /** |
|
| 515 | + * @param string $name |
|
| 516 | + */ |
|
| 514 | 517 | private function checkDatabaseName($name) |
| 515 | 518 | { |
| 516 | 519 | if (empty($name)) { |
@@ -543,7 +546,7 @@ discard block |
||
| 543 | 546 | } |
| 544 | 547 | |
| 545 | 548 | /** |
| 546 | - * @return array |
|
| 549 | + * @return string[] |
|
| 547 | 550 | */ |
| 548 | 551 | public function __sleep() |
| 549 | 552 | { |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | ]; |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | - * @return Cursor |
|
| 83 | + * @return \Traversable |
|
| 84 | 84 | */ |
| 85 | 85 | abstract protected function ensureCursor(); |
| 86 | 86 | |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | /** |
| 380 | - * @return array |
|
| 380 | + * @return string[] |
|
| 381 | 381 | */ |
| 382 | 382 | public function __sleep() |
| 383 | 383 | { |