Completed
Pull Request — master (#39)
by
unknown
13:08 queued 04:16
created
lib/Mongo/MongoCollection.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -127,14 +127,14 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function aggregate(array $pipeline, array $op = [])
129 129
     {
130
-        if (! TypeConverter::isNumericArray($pipeline)) {
130
+        if ( ! TypeConverter::isNumericArray($pipeline)) {
131 131
             $pipeline = [];
132 132
             $options = [];
133 133
 
134 134
             $i = 0;
135 135
             foreach (func_get_args() as $operator) {
136 136
                 $i++;
137
-                if (! is_array($operator)) {
137
+                if ( ! is_array($operator)) {
138 138
                     trigger_error("Argument $i is not an array", E_WARNING);
139 139
                     return;
140 140
                 }
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         ];
178 178
 
179 179
         // Convert cursor option
180
-        if (! isset($options['cursor'])) {
180
+        if ( ! isset($options['cursor'])) {
181 181
             $options['cursor'] = true;
182 182
         }
183 183
 
@@ -263,12 +263,12 @@  discard block
 block discarded – undo
263 263
      */
264 264
     public function insert(&$a, array $options = [])
265 265
     {
266
-        if (! $this->ensureDocumentHasMongoId($a)) {
266
+        if ( ! $this->ensureDocumentHasMongoId($a)) {
267 267
             trigger_error(sprintf('%s expects parameter %d to be an array or object, %s given', __METHOD__, 1, gettype($a)), E_USER_WARNING);
268 268
             return;
269 269
         }
270 270
 
271
-        if (! count((array)$a)) {
271
+        if ( ! count((array) $a)) {
272 272
             throw new \MongoException('document must be an array or object');
273 273
         }
274 274
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
             ExceptionConverter::toLegacy($e);
291 291
         }
292 292
 
293
-        if (! $result->isAcknowledged()) {
293
+        if ( ! $result->isAcknowledged()) {
294 294
             return true;
295 295
         }
296 296
 
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 
322 322
         foreach ($a as $key => $item) {
323 323
             try {
324
-                if (! $this->ensureDocumentHasMongoId($a[$key])) {
324
+                if ( ! $this->ensureDocumentHasMongoId($a[$key])) {
325 325
                     if ($continueOnError) {
326 326
                         unset($a[$key]);
327 327
                     } else {
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
             ExceptionConverter::toLegacy($e);
346 346
         }
347 347
 
348
-        if (! $result->isAcknowledged()) {
348
+        if ( ! $result->isAcknowledged()) {
349 349
             return true;
350 350
         }
351 351
 
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
      * @throws MongoCursorException
370 370
      * @return boolean
371 371
      */
372
-    public function update(array $criteria , array $newobj, array $options = [])
372
+    public function update(array $criteria, array $newobj, array $options = [])
373 373
     {
374 374
         $multiple = isset($options['multiple']) ? $options['multiple'] : false;
375 375
         $method = $multiple ? 'updateMany' : 'updateOne';
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
             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
             ExceptionConverter::toLegacy($e);
438 438
         }
439 439
 
440
-        if (! $result->isAcknowledged()) {
440
+        if ( ! $result->isAcknowledged()) {
441 441
             return true;
442 442
         }
443 443
 
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
             $keys = (array) $keys;
573 573
         }
574 574
 
575
-        if (! is_array($keys) || ! count($keys)) {
575
+        if ( ! is_array($keys) || ! count($keys)) {
576 576
             throw new MongoException('keys cannot be empty');
577 577
         }
578 578
 
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
         $indexes = $this->collection->listIndexes();
583 583
         foreach ($indexes as $index) {
584 584
 
585
-            if (! empty($options['name']) && $index->getName() === $options['name']) {
585
+            if ( ! empty($options['name']) && $index->getName() === $options['name']) {
586 586
                 throw new \MongoResultException(sprintf('index with name: %s already exists', $index->getName()));
587 587
             }
588 588
 
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
             ExceptionConverter::toLegacy($e);
734 734
         }
735 735
 
736
-        if (!$result->isAcknowledged()) {
736
+        if ( ! $result->isAcknowledged()) {
737 737
             return true;
738 738
         }
739 739
 
@@ -759,13 +759,13 @@  discard block
 block discarded – undo
759 759
         if ($document_or_id instanceof \MongoId) {
760 760
             $id = $document_or_id;
761 761
         } elseif (is_object($document_or_id)) {
762
-            if (! isset($document_or_id->_id)) {
762
+            if ( ! isset($document_or_id->_id)) {
763 763
                 return null;
764 764
             }
765 765
 
766 766
             $id = $document_or_id->_id;
767 767
         } elseif (is_array($document_or_id)) {
768
-            if (! isset($document_or_id['_id'])) {
768
+            if ( ! isset($document_or_id['_id'])) {
769 769
                 return null;
770 770
             }
771 771
 
@@ -808,14 +808,14 @@  discard block
 block discarded – undo
808 808
         $command = [
809 809
             'group' => [
810 810
                 'ns' => $this->name,
811
-                '$reduce' => (string)$reduce,
811
+                '$reduce' => (string) $reduce,
812 812
                 'initial' => $initial,
813 813
                 'cond' => $condition,
814 814
             ],
815 815
         ];
816 816
 
817 817
         if ($keys instanceof MongoCode) {
818
-            $command['group']['$keyf'] = (string)$keys;
818
+            $command['group']['$keyf'] = (string) $keys;
819 819
         } else {
820 820
             $command['group']['key'] = $keys;
821 821
         }
@@ -824,7 +824,7 @@  discard block
 block discarded – undo
824 824
         }
825 825
         if (array_key_exists('finalize', $condition)) {
826 826
             if ($condition['finalize'] instanceof MongoCode) {
827
-                $condition['finalize'] = (string)$condition['finalize'];
827
+                $condition['finalize'] = (string) $condition['finalize'];
828 828
             }
829 829
             $command['group']['finalize'] = $condition['finalize'];
830 830
         }
@@ -878,11 +878,11 @@  discard block
 block discarded – undo
878 878
             $options['w'] = ($options['safe']) ? 1 : 0;
879 879
         }
880 880
 
881
-        if (isset($options['wtimeout']) && !isset($options['wTimeoutMS'])) {
881
+        if (isset($options['wtimeout']) && ! isset($options['wTimeoutMS'])) {
882 882
             $options['wTimeoutMS'] = $options['wtimeout'];
883 883
         }
884 884
 
885
-        if (isset($options['w']) || !isset($options['wTimeoutMS'])) {
885
+        if (isset($options['w']) || ! isset($options['wTimeoutMS'])) {
886 886
             $collectionWriteConcern = $this->getWriteConcern();
887 887
             $writeConcern = $this->createWriteConcernFromParameters(
888 888
                 isset($options['w']) ? $options['w'] : $collectionWriteConcern['w'],
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
             if (empty($document)) {
919 919
                 throw new \MongoException('document cannot be empty');
920 920
             }
921
-            if (! isset($document['_id'])) {
921
+            if ( ! isset($document['_id'])) {
922 922
                 $document['_id'] = new \MongoId();
923 923
             }
924 924
 
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
             if (empty((array) $document)) {
930 930
                 throw new \MongoException('document cannot be empty');
931 931
             }
932
-            if (! isset($document->_id)) {
932
+            if ( ! isset($document->_id)) {
933 933
                 $document->_id = new \MongoId();
934 934
             }
935 935
 
Please login to merge, or discard this patch.