Completed
Pull Request — master (#108)
by Damien
03:20
created
lib/Mongo/MongoId.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     {
49 49
         if ($value instanceof ObjectID || $value instanceof MongoId) {
50 50
             return true;
51
-        } elseif (! is_string($value)) {
51
+        } elseif ( ! is_string($value)) {
52 52
             return false;
53 53
         }
54 54
 
Please login to merge, or discard this patch.
lib/Mongo/MongoResultException.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,13 +18,16 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
lib/Mongo/MongoBinData.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
lib/Mongo/MongoCursor.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @return array
105
+     * @return string[]
106 106
      */
107 107
     public function __sleep()
108 108
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
      */
222 222
     public function hasNext()
223 223
     {
224
-        if (! $this->startedIterating) {
224
+        if ( ! $this->startedIterating) {
225 225
             $this->ensureIterator();
226 226
             $this->startedIterating = true;
227 227
             $this->storeIteratorState();
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
      */
406 406
     protected function convertCursorType()
407 407
     {
408
-        if (! $this->tailable) {
408
+        if ( ! $this->tailable) {
409 409
             return null;
410 410
         }
411 411
 
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
     protected function wrapTraversable(\Traversable $traversable)
447 447
     {
448 448
         foreach ($traversable as $key => $value) {
449
-            if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || !is_object($value->_id))) {
449
+            if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || ! is_object($value->_id))) {
450 450
                 $key = (string) $value->_id;
451 451
             }
452 452
             yield $key => $value;
Please login to merge, or discard this patch.
lib/Mongo/MongoGridFSFile.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -126,6 +126,9 @@
 block discarded – undo
126 126
         );
127 127
     }
128 128
 
129
+    /**
130
+     * @param resource $handle
131
+     */
129 132
     private function writeFromRessource($handle)
130 133
     {
131 134
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
lib/Mongo/Mongo.php 2 patches
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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()
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
lib/Mongo/MongoCollection.php 3 patches
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -511,6 +511,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
543 546
     }
544 547
 
545 548
     /**
546
-     * @return array
549
+     * @return string[]
547 550
      */
548 551
     public function __sleep()
549 552
     {
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -130,14 +130,14 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function aggregate(array $pipeline, array $op = [])
132 132
     {
133
-        if (! TypeConverter::isNumericArray($pipeline)) {
133
+        if ( ! TypeConverter::isNumericArray($pipeline)) {
134 134
             $pipeline = [];
135 135
             $options = [];
136 136
 
137 137
             $i = 0;
138 138
             foreach (func_get_args() as $operator) {
139 139
                 $i++;
140
-                if (! is_array($operator)) {
140
+                if ( ! is_array($operator)) {
141 141
                     trigger_error("Argument $i is not an array", E_WARNING);
142 142
                     return;
143 143
                 }
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                 'waitedMS' => 0,
170 170
             ];
171 171
         } catch (\MongoDB\Driver\Exception\Exception $e) {
172
-            throw ExceptionConverter::toLegacy($e,'MongoResultException');
172
+            throw ExceptionConverter::toLegacy($e, 'MongoResultException');
173 173
         }
174 174
     }
175 175
 
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         ];
191 191
 
192 192
         // Convert cursor option
193
-        if (! isset($options['cursor'])) {
193
+        if ( ! isset($options['cursor'])) {
194 194
             $options['cursor'] = new \stdClass();
195 195
         }
196 196
 
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
      */
277 277
     public function insert(&$a, array $options = [])
278 278
     {
279
-        if (! $this->ensureDocumentHasMongoId($a)) {
279
+        if ( ! $this->ensureDocumentHasMongoId($a)) {
280 280
             trigger_error(sprintf('%s(): expects parameter %d to be an array or object, %s given', __METHOD__, 1, gettype($a)), E_USER_WARNING);
281 281
             return;
282 282
         }
283 283
 
284
-        if (! count((array)$a)) {
284
+        if ( ! count((array) $a)) {
285 285
             throw new \MongoException('document must be an array or object');
286 286
         }
287 287
 
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
             throw ExceptionConverter::toLegacy($e);
295 295
         }
296 296
 
297
-        if (! $result->isAcknowledged()) {
297
+        if ( ! $result->isAcknowledged()) {
298 298
             return true;
299 299
         }
300 300
 
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 
326 326
         foreach ($a as $key => $item) {
327 327
             try {
328
-                if (! $this->ensureDocumentHasMongoId($a[$key])) {
328
+                if ( ! $this->ensureDocumentHasMongoId($a[$key])) {
329 329
                     if ($continueOnError) {
330 330
                         unset($a[$key]);
331 331
                     } else {
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
             throw ExceptionConverter::toLegacy($e, 'MongoResultException');
350 350
         }
351 351
 
352
-        if (! $result->isAcknowledged()) {
352
+        if ( ! $result->isAcknowledged()) {
353 353
             return true;
354 354
         }
355 355
 
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
      * @throws MongoCursorException
374 374
      * @return boolean
375 375
      */
376
-    public function update(array $criteria , array $newobj, array $options = [])
376
+    public function update(array $criteria, array $newobj, array $options = [])
377 377
     {
378 378
         $multiple = isset($options['multiple']) ? $options['multiple'] : false;
379 379
         $isReplace = ! \MongoDB\is_first_key_operator($newobj);
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
             throw ExceptionConverter::toLegacy($e);
398 398
         }
399 399
 
400
-        if (! $result->isAcknowledged()) {
400
+        if ( ! $result->isAcknowledged()) {
401 401
             return true;
402 402
         }
403 403
 
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
      */
425 425
     public function remove(array $criteria = [], array $options = [])
426 426
     {
427
-        $multiple = isset($options['justOne']) ? !$options['justOne'] : true;
427
+        $multiple = isset($options['justOne']) ? ! $options['justOne'] : true;
428 428
         $method = $multiple ? 'deleteMany' : 'deleteOne';
429 429
 
430 430
         try {
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
             throw ExceptionConverter::toLegacy($e);
438 438
         }
439 439
 
440
-        if (! $result->isAcknowledged()) {
440
+        if ( ! $result->isAcknowledged()) {
441 441
             return true;
442 442
         }
443 443
 
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
 
516 516
                 $options['projection'] = is_array($fields) ? TypeConverter::fromLegacy($fields) : [];
517 517
 
518
-                if (! \MongoDB\is_first_key_operator($update)) {
518
+                if ( ! \MongoDB\is_first_key_operator($update)) {
519 519
                     $document = $this->collection->findOneAndReplace($query, $update, $options);
520 520
                 } else {
521 521
                     $document = $this->collection->findOneAndUpdate($query, $update, $options);
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
     public function findOne($query = [], array $fields = [], array $options = [])
547 547
     {
548 548
         // Can't typehint for array since MongoGridFS extends and accepts strings
549
-        if (! is_array($query)) {
549
+        if ( ! is_array($query)) {
550 550
             trigger_error(sprintf('MongoCollection::findOne(): expects parameter 1 to be an array or object, %s given', gettype($query)), E_WARNING);
551 551
             return;
552 552
         }
@@ -586,11 +586,11 @@  discard block
 block discarded – undo
586 586
             $keys = (array) $keys;
587 587
         }
588 588
 
589
-        if (! is_array($keys) || ! count($keys)) {
589
+        if ( ! is_array($keys) || ! count($keys)) {
590 590
             throw new MongoException('index specification has no elements');
591 591
         }
592 592
 
593
-        if (! isset($options['name'])) {
593
+        if ( ! isset($options['name'])) {
594 594
             $options['name'] = \MongoDB\generate_index_name($keys);
595 595
         }
596 596
 
@@ -625,14 +625,14 @@  discard block
 block discarded – undo
625 625
         }
626 626
 
627 627
         $result = [
628
-            'createdCollectionAutomatically' => !$collectionExists,
628
+            'createdCollectionAutomatically' => ! $collectionExists,
629 629
             'numIndexesBefore' => $indexCount,
630 630
             'numIndexesAfter' => $indexCount,
631 631
             'note' => 'all indexes already exist',
632 632
             'ok' => 1.0,
633 633
         ];
634 634
 
635
-        if (! $indexExists) {
635
+        if ( ! $indexExists) {
636 636
             $result['numIndexesAfter']++;
637 637
             unset($result['note']);
638 638
         }
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
     {
666 666
         if (is_string($keys)) {
667 667
             $indexName = $keys;
668
-            if (! preg_match('#_-?1$#', $indexName)) {
668
+            if ( ! preg_match('#_-?1$#', $indexName)) {
669 669
                 $indexName .= '_1';
670 670
             }
671 671
         } elseif (is_array($keys)) {
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
     {
729 729
         try {
730 730
             // Handle legacy mode - limit and skip as second and third parameters, respectively
731
-            if (! is_array($options)) {
731
+            if ( ! is_array($options)) {
732 732
                 $limit = $options;
733 733
                 $options = [];
734 734
 
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
                 $this->convertWriteConcernOptions($options)
776 776
             );
777 777
 
778
-            if (! $result->isAcknowledged()) {
778
+            if ( ! $result->isAcknowledged()) {
779 779
                 return true;
780 780
             }
781 781
 
@@ -809,13 +809,13 @@  discard block
 block discarded – undo
809 809
         if ($document_or_id instanceof \MongoId) {
810 810
             $id = $document_or_id;
811 811
         } elseif (is_object($document_or_id)) {
812
-            if (! isset($document_or_id->_id)) {
812
+            if ( ! isset($document_or_id->_id)) {
813 813
                 return null;
814 814
             }
815 815
 
816 816
             $id = $document_or_id->_id;
817 817
         } elseif (is_array($document_or_id)) {
818
-            if (! isset($document_or_id['_id'])) {
818
+            if ( ! isset($document_or_id['_id'])) {
819 819
                 return null;
820 820
             }
821 821
 
@@ -858,14 +858,14 @@  discard block
 block discarded – undo
858 858
         $command = [
859 859
             'group' => [
860 860
                 'ns' => $this->name,
861
-                '$reduce' => (string)$reduce,
861
+                '$reduce' => (string) $reduce,
862 862
                 'initial' => $initial,
863 863
                 'cond' => $condition,
864 864
             ],
865 865
         ];
866 866
 
867 867
         if ($keys instanceof MongoCode) {
868
-            $command['group']['$keyf'] = (string)$keys;
868
+            $command['group']['$keyf'] = (string) $keys;
869 869
         } else {
870 870
             $command['group']['key'] = $keys;
871 871
         }
@@ -874,7 +874,7 @@  discard block
 block discarded – undo
874 874
         }
875 875
         if (array_key_exists('finalize', $condition)) {
876 876
             if ($condition['finalize'] instanceof MongoCode) {
877
-                $condition['finalize'] = (string)$condition['finalize'];
877
+                $condition['finalize'] = (string) $condition['finalize'];
878 878
             }
879 879
             $command['group']['finalize'] = $condition['finalize'];
880 880
         }
@@ -928,11 +928,11 @@  discard block
 block discarded – undo
928 928
             $options['w'] = ($options['safe']) ? 1 : 0;
929 929
         }
930 930
 
931
-        if (isset($options['wtimeout']) && !isset($options['wTimeoutMS'])) {
931
+        if (isset($options['wtimeout']) && ! isset($options['wTimeoutMS'])) {
932 932
             $options['wTimeoutMS'] = $options['wtimeout'];
933 933
         }
934 934
 
935
-        if (isset($options['w']) || !isset($options['wTimeoutMS'])) {
935
+        if (isset($options['w']) || ! isset($options['wTimeoutMS'])) {
936 936
             $collectionWriteConcern = $this->getWriteConcern();
937 937
             $writeConcern = $this->createWriteConcernFromParameters(
938 938
                 isset($options['w']) ? $options['w'] : $collectionWriteConcern['w'],
@@ -965,7 +965,7 @@  discard block
 block discarded – undo
965 965
         };
966 966
 
967 967
         if (is_array($document)) {
968
-            if (! isset($document['_id'])) {
968
+            if ( ! isset($document['_id'])) {
969 969
                 $document['_id'] = new \MongoId();
970 970
             }
971 971
 
@@ -975,12 +975,12 @@  discard block
 block discarded – undo
975 975
         } elseif (is_object($document)) {
976 976
             $reflectionObject = new \ReflectionObject($document);
977 977
             foreach ($reflectionObject->getProperties() as $property) {
978
-                if (! $property->isPublic()) {
978
+                if ( ! $property->isPublic()) {
979 979
                     throw new \MongoException('zero-length keys are not allowed, did you use $ with double quotes?');
980 980
                 }
981 981
             }
982 982
 
983
-            if (! isset($document->_id)) {
983
+            if ( ! isset($document->_id)) {
984 984
                 $document->_id = new \MongoId();
985 985
             }
986 986
 
Please login to merge, or discard this patch.
lib/Mongo/MongoConnectionException.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/Mongo/MongoCursorException.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14 14
  */
15 15
 
16
-class MongoCursorException extends MongoException {
16
+class MongoCursorException extends MongoException
17
+{
17 18
 
18 19
 }
Please login to merge, or discard this patch.