Passed
Pull Request — 8.x-2.x (#26)
by Frédéric G.
02:49
created
modules/mongodb_watchdog/src/Entity/EventTemplate.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
  *   base_table = "mongodb_watchdog_event_template",
40 40
  *   data_table = "mongodb_watchdog_event_template_field_data",
41 41
  *   translatable = TRUE,
42
-  *   admin_permission = "administer event template entities",
42
+ *   admin_permission = "administer event template entities",
43 43
  *   entity_keys = {
44 44
  *     "id" = "id",
45 45
  *     "label" = "name",
Please login to merge, or discard this patch.
example.settings.local.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * of the MongoDB features by just commenting the last line out.
10 10
  */
11 11
 
12
-$configureMongoDb = function (array $settings): array {
12
+$configureMongoDb = function(array $settings): array {
13 13
   $settings['mongodb'] = [
14 14
     'clients' => [
15 15
       // Client alias => connection constructor parameters.
Please login to merge, or discard this patch.
modules/mongodb/tests/src/Kernel/MongoDbTest.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/DatabaseFactory.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;
6 6
 
Please login to merge, or discard this patch.
modules/mongodb/src/Command/SettingsCommand.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\Command;
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/mongodb_module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * Contains the main module connecting Drupal to MongoDB.
6 6
  */
7 7
 
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 /**
11 11
  * Implements hook_help().
Please login to merge, or discard this patch.
modules/mongodb/mongodb_install.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * Install file for the MongoDB module.
6 6
  */
7 7
 
8
-declare(strict_types = 1);
8
+declare(strict_types=1);
9 9
 
10 10
 /**
11 11
  * Requirements check: MongoDB extension.
Please login to merge, or discard this patch.