Passed
Push — 8.x-2.x ( 28cdbd...dac389 )
by Frédéric G.
01:03 queued 11s
created
modules/mongodb/tests/src/Kernel/ClientFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\Tests\mongodb\Kernel;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb/src/Commands/MongodbCommands.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb\Commands;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb/src/Install/Tools.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb\Install;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/tests/src/Functional/ControllerTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\Tests\mongodb_watchdog\Functional;
6 6
 
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
    */
311 311
   protected function assertTypeCount(array $types) {
312 312
     $entries = $this->getLogEntries();
313
-    $reducer = function ($accu, $curr) {
313
+    $reducer = function($accu, $curr) {
314 314
       $accu[$curr['type'] . '-' . $curr['severity']] = [$curr['type'], $curr['severity']];
315 315
       return $accu;
316 316
     };
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
       $this->drupalPostForm(NULL, $edit, 'Filter');
573 573
 
574 574
       // Check whether the displayed event templates match our filter.
575
-      $filteredTypes = array_filter($types, function (array $type) use ($typeName) {
575
+      $filteredTypes = array_filter($types, function(array $type) use ($typeName) {
576 576
         return $type['type'] === $typeName;
577 577
       });
578 578
       $this->assertTypeCount($filteredTypes);
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
       ];
588 588
       $this->drupalPostForm(NULL, $edit, 'Filter');
589 589
 
590
-      $filteredTypes = array_filter($types, function (array $type) use ($typeType, $typeSeverity) {
590
+      $filteredTypes = array_filter($types, function(array $type) use ($typeType, $typeSeverity) {
591 591
         return $type['type'] === $typeType && $type['severity'] == $typeSeverity;
592 592
       });
593 593
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/tests/src/Kernel/LoggerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\Tests\mongodb_watchdog\Kernel;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/src/Install/Requirements.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb_watchdog\Install;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/src/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb_watchdog;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/src/Controller/RequestController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb_watchdog\Controller;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb_watchdog/src/Controller/ControllerBase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Drupal\mongodb_watchdog\Controller;
6 6
 
Please login to merge, or discard this patch.