Passed
Pull Request — 8.x-2.x (#69)
by Frédéric G.
03:15
created
modules/mongodb/src/Queue/MongodbQueue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Drupal\mongodb\Queue;
5 5
 
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
     ];
110 110
     return $this->collection->findOneAndUpdate(
111 111
       [],
112
-      [ '$set' => $newobj ],
113
-      [ 'sort' => ['created' => 1],]
112
+      ['$set' => $newobj],
113
+      ['sort' => ['created' => 1], ]
114 114
     );
115 115
 
116 116
 
Please login to merge, or discard this patch.
modules/mongodb/src/Queue/QueueMongodbFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Drupal\mongodb\Queue;
5 5
 
Please login to merge, or discard this patch.