Completed
Pull Request — master (#12)
by
unknown
02:29
created
lib/Mongo/Mongo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * </p>
93 93
      * @return bool returns the former value of slaveOkay for this instance.
94 94
      */
95
-    public function setSlaveOkay ($ok) {}
95
+    public function setSlaveOkay($ok) {}
96 96
     /**
97 97
      * @deprecated Relying on this feature is highly discouraged. Please use MongoPool::setSize() instead.
98 98
      *(PECL mongo &gt;= 1.2.0)<br/>
Please login to merge, or discard this patch.
lib/Mongo/MongoDB.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
         $collections = $this->db->listCollections($options);
105 105
 
106
-        $getCollectionName = function (CollectionInfo $collectionInfo) {
106
+        $getCollectionName = function(CollectionInfo $collectionInfo) {
107 107
             return $collectionInfo->getName();
108 108
         };
109 109
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      * </p>
205 205
      * @return bool Returns the former value of slaveOkay for this instance.
206 206
      */
207
-    public function setSlaveOkay ($ok = true)
207
+    public function setSlaveOkay($ok = true)
208 208
     {
209 209
         return false;
210 210
     }
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
             $id = isset($document_or_id->_id) ? $document_or_id->_id : null;
297 297
 //            $id = $document_or_id->_id ?? null;
298 298
         } elseif (is_array($document_or_id)) {
299
-            if (! isset($document_or_id['_id'])) {
299
+            if (!isset($document_or_id['_id'])) {
300 300
                 return null;
301 301
             }
302 302
 
Please login to merge, or discard this patch.
lib/Mongo/MongoLog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
      * <ul>
100 100
      * @return boolean Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
101 101
      */
102
-    public static function setCallback ( callable $log_function ) {}
102
+    public static function setCallback(callable $log_function) {}
103 103
 
104 104
     /**
105 105
      * This function can be used to set how verbose logging should be and the types of
Please login to merge, or discard this patch.
lib/Mongo/MongoResultException.php 1 patch
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.
lib/Mongo/MongoRegex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             return;
44 44
         }
45 45
 
46
-        if (! preg_match('#^/(.*)/([imxslu]*)$#', $regex, $matches)) {
46
+        if (!preg_match('#^/(.*)/([imxslu]*)$#', $regex, $matches)) {
47 47
             throw new MongoException('invalid regex', 9);
48 48
         }
49 49
 
Please login to merge, or discard this patch.
lib/Mongo/MongoDBRef.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      */
78 78
     public static function get($db, $ref)
79 79
     {
80
-        if (! static::isRef($ref)) {
80
+        if (!static::isRef($ref)) {
81 81
             return null;
82 82
         }
83 83
 
Please login to merge, or discard this patch.
lib/Mongo/MongoCursor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -377,7 +377,7 @@
 block discarded – undo
377 377
      */
378 378
     protected function convertCursorType()
379 379
     {
380
-        if (! $this->tailable) {
380
+        if (!$this->tailable) {
381 381
             return null;
382 382
         }
383 383
 
Please login to merge, or discard this patch.
lib/Alcaeus/MongoDbAdapter/AbstractCursor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
             \MongoClient::RP_SECONDARY_PREFERRED,
221 221
             \MongoClient::RP_NEAREST
222 222
         ];
223
-        if (! in_array($readPreference, $availableReadPreferences)) {
223
+        if (!in_array($readPreference, $availableReadPreferences)) {
224 224
             trigger_error("The value '$readPreference' is not valid as read preference type", E_WARNING);
225 225
             return $this;
226 226
         }
Please login to merge, or discard this patch.
lib/Mongo/MongoCollection.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -131,14 +131,14 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function aggregate(array $pipeline, array $op = [])
133 133
     {
134
-        if (! TypeConverter::isNumericArray($pipeline)) {
134
+        if (!TypeConverter::isNumericArray($pipeline)) {
135 135
             $pipeline = [];
136 136
             $options = [];
137 137
 
138 138
             $i = 0;
139 139
             foreach (func_get_args() as $operator) {
140 140
                 $i++;
141
-                if (! is_array($operator)) {
141
+                if (!is_array($operator)) {
142 142
                     trigger_error("Argument $i is not an array", E_WARNING);
143 143
                     return;
144 144
                 }
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         ];
175 175
 
176 176
         // Convert cursor option
177
-        if (! isset($options['cursor']) || $options['cursor'] === true || $options['cursor'] === []) {
177
+        if (!isset($options['cursor']) || $options['cursor'] === true || $options['cursor'] === []) {
178 178
             // Cursor option needs to be an object convert bools and empty arrays since those won't be handled by TypeConverter
179 179
             $options['cursor'] = new \stdClass;
180 180
         }
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
      * @throws MongoCursorException
361 361
      * @return boolean
362 362
      */
363
-    public function update(array $criteria , array $newobj, array $options = array())
363
+    public function update(array $criteria, array $newobj, array $options = array())
364 364
     {
365 365
         $multiple = ($options['multiple']) ? $options['multiple'] : false;
366 366
 //        $multiple = $options['multiple'] ?? false;
@@ -601,9 +601,9 @@  discard block
 block discarded – undo
601 601
     public function save($a, array $options = array())
602 602
     {
603 603
         if (is_object($a)) {
604
-            $a = (array)$a;
604
+            $a = (array) $a;
605 605
         }
606
-        if ( ! array_key_exists('_id', $a)) {
606
+        if (!array_key_exists('_id', $a)) {
607 607
             $id = new \MongoId();
608 608
         } else {
609 609
             $id = $a['_id'];
@@ -665,20 +665,20 @@  discard block
 block discarded – undo
665 665
         if (is_string($reduce)) {
666 666
             $reduce = new MongoCode($reduce);
667 667
         }
668
-        if ( ! $reduce instanceof MongoCode) {
668
+        if (!$reduce instanceof MongoCode) {
669 669
             throw new \InvalidArgumentExcption('reduce parameter should be a string or MongoCode instance.');
670 670
         }
671 671
         $command = [
672 672
             'group' => [
673 673
                 'ns'      => $this->name,
674
-                '$reduce' => (string)$reduce,
674
+                '$reduce' => (string) $reduce,
675 675
                 'initial' => $initial,
676 676
                 'cond'    => $condition,
677 677
             ],
678 678
         ];
679 679
 
680 680
         if ($keys instanceof MongoCode) {
681
-            $command['group']['$keyf'] = (string)$keys;
681
+            $command['group']['$keyf'] = (string) $keys;
682 682
         } else {
683 683
             $command['group']['key'] = $keys;
684 684
         }
@@ -687,14 +687,14 @@  discard block
 block discarded – undo
687 687
         }
688 688
         if (array_key_exists('finalize', $condition)) {
689 689
             if ($condition['finalize'] instanceof MongoCode) {
690
-                $condition['finalize'] = (string)$condition['finalize'];
690
+                $condition['finalize'] = (string) $condition['finalize'];
691 691
             }
692 692
             $command['group']['finalize'] = $condition['finalize'];
693 693
         }
694 694
 
695 695
         $result = $this->db->command($command, [], $hash);
696 696
         unset($result['waitedMS']);
697
-        $result['ok'] = (int)$result['ok'];
697
+        $result['ok'] = (int) $result['ok'];
698 698
         if (count($result['retval'])) {
699 699
             $result['retval'] = current($result['retval']);
700 700
         }
Please login to merge, or discard this patch.