Completed
Pull Request — master (#20)
by
unknown
05:09 queued 26s
created
lib/Mongo/MongoGridFSCursor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,6 +65,6 @@
 block discarded – undo
65 65
     public function key()
66 66
     {
67 67
         $file = $this->current();
68
-        return ($file !== null) ? (string)$file->file['_id'] : null;
68
+        return ($file !== null) ? (string) $file->file['_id'] : null;
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
lib/Mongo/MongoWriteBatch.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     public function add($item)
77 77
     {
78 78
         if (is_object($item)) {
79
-            $item = (array)$item;
79
+            $item = (array) $item;
80 80
         }
81 81
 
82 82
         $this->validate($item);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     final public function execute(array $writeOptions = [])
96 96
     {
97 97
         $writeOptions += $this->writeOptions;
98
-        if (! count($this->items)) {
98
+        if ( ! count($this->items)) {
99 99
             return ['ok' => true];
100 100
         }
101 101
 
@@ -142,13 +142,13 @@  discard block
 block discarded – undo
142 142
     {
143 143
         switch ($this->batchType) {
144 144
             case self::COMMAND_UPDATE:
145
-                if (! isset($item['q']) || ! isset($item['u'])) {
145
+                if ( ! isset($item['q']) || ! isset($item['u'])) {
146 146
                     throw new Exception('invalid item');
147 147
                 }
148 148
                 break;
149 149
 
150 150
             case self::COMMAND_DELETE:
151
-                if (! isset($item['q']) || ! isset($item['limit'])) {
151
+                if ( ! isset($item['q']) || ! isset($item['limit'])) {
152 152
                     throw new Exception('invalid item');
153 153
                 }
154 154
                 break;
Please login to merge, or discard this patch.
lib/Alcaeus/MongoDbAdapter/Helper/WriteConcernConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      */
56 56
     protected function setWriteConcernFromParameters($wstring, $wtimeout = 0)
57 57
     {
58
-        if (! is_string($wstring) && ! is_int($wstring)) {
58
+        if ( ! is_string($wstring) && ! is_int($wstring)) {
59 59
             trigger_error("w for WriteConcern must be a string or integer", E_WARNING);
60 60
             return false;
61 61
         }
Please login to merge, or discard this patch.
lib/Mongo/MongoCollection.php 1 patch
Spacing   +23 added lines, -23 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
 
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
      */
562 562
     public function createIndex(array $keys, array $options = [])
563 563
     {
564
-        if (! is_array($keys) || ! count($keys)) {
564
+        if ( ! is_array($keys) || ! count($keys)) {
565 565
             throw new MongoException('keys cannot be empty');
566 566
         }
567 567
 
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
         $indexes = $this->collection->listIndexes();
572 572
         foreach ($indexes as $index) {
573 573
 
574
-            if (! empty($options['name']) && $index->getName() === $options['name']) {
574
+            if ( ! empty($options['name']) && $index->getName() === $options['name']) {
575 575
                 throw new \MongoDuplicateKeyException();
576 576
             }
577 577
 
@@ -732,13 +732,13 @@  discard block
 block discarded – undo
732 732
         if ($document_or_id instanceof \MongoId) {
733 733
             $id = $document_or_id;
734 734
         } elseif (is_object($document_or_id)) {
735
-            if (! isset($document_or_id->_id)) {
735
+            if ( ! isset($document_or_id->_id)) {
736 736
                 return null;
737 737
             }
738 738
 
739 739
             $id = $document_or_id->_id;
740 740
         } elseif (is_array($document_or_id)) {
741
-            if (! isset($document_or_id['_id'])) {
741
+            if ( ! isset($document_or_id['_id'])) {
742 742
                 return null;
743 743
             }
744 744
 
@@ -781,14 +781,14 @@  discard block
 block discarded – undo
781 781
         $command = [
782 782
             'group' => [
783 783
                 'ns' => $this->name,
784
-                '$reduce' => (string)$reduce,
784
+                '$reduce' => (string) $reduce,
785 785
                 'initial' => $initial,
786 786
                 'cond' => $condition,
787 787
             ],
788 788
         ];
789 789
 
790 790
         if ($keys instanceof MongoCode) {
791
-            $command['group']['$keyf'] = (string)$keys;
791
+            $command['group']['$keyf'] = (string) $keys;
792 792
         } else {
793 793
             $command['group']['key'] = $keys;
794 794
         }
@@ -797,7 +797,7 @@  discard block
 block discarded – undo
797 797
         }
798 798
         if (array_key_exists('finalize', $condition)) {
799 799
             if ($condition['finalize'] instanceof MongoCode) {
800
-                $condition['finalize'] = (string)$condition['finalize'];
800
+                $condition['finalize'] = (string) $condition['finalize'];
801 801
             }
802 802
             $command['group']['finalize'] = $condition['finalize'];
803 803
         }
@@ -851,11 +851,11 @@  discard block
 block discarded – undo
851 851
             $options['w'] = ($options['safe']) ? 1 : 0;
852 852
         }
853 853
 
854
-        if (isset($options['wtimeout']) && !isset($options['wTimeoutMS'])) {
854
+        if (isset($options['wtimeout']) && ! isset($options['wTimeoutMS'])) {
855 855
             $options['wTimeoutMS'] = $options['wtimeout'];
856 856
         }
857 857
 
858
-        if (isset($options['w']) || !isset($options['wTimeoutMS'])) {
858
+        if (isset($options['w']) || ! isset($options['wTimeoutMS'])) {
859 859
             $collectionWriteConcern = $this->getWriteConcern();
860 860
             $writeConcern = $this->createWriteConcernFromParameters(
861 861
                 isset($options['w']) ? $options['w'] : $collectionWriteConcern['w'],
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
             if (empty($document)) {
892 892
                 throw new \MongoException('document cannot be empty');
893 893
             }
894
-            if (! isset($document['_id'])) {
894
+            if ( ! isset($document['_id'])) {
895 895
                 $document['_id'] = new \MongoId();
896 896
             }
897 897
 
@@ -902,7 +902,7 @@  discard block
 block discarded – undo
902 902
             if (empty((array) $document)) {
903 903
                 throw new \MongoException('document cannot be empty');
904 904
             }
905
-            if (! isset($document->_id)) {
905
+            if ( ! isset($document->_id)) {
906 906
                 $document->_id = new \MongoId();
907 907
             }
908 908
 
Please login to merge, or discard this patch.