Completed
Push — master ( 6a6d28...cf0839 )
by Alessandro
9s
created
src/Command/AbstractCommand.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 Facile\MongoDbBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/Command/DropCollectionCommand.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 Facile\MongoDbBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/Command/DropDatabaseCommand.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 Facile\MongoDbBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/DataCollector/MongoLogEventSerializer.php 1 patch
Spacing   +2 added lines, -2 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 Facile\MongoDbBundle\DataCollector;
6 6
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             }
45 45
 
46 46
             if (is_array($item) || is_object($item)) {
47
-                $data[$key] = self::prepareUnserializableData((array)$item);
47
+                $data[$key] = self::prepareUnserializableData((array) $item);
48 48
             }
49 49
         }
50 50
 
Please login to merge, or discard this patch.