Completed
Push — master ( 9e7fb1...8f9428 )
by Alessandro
02:48
created
src/Models/Query.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Models;
4 4
 
Please login to merge, or discard this patch.
src/Models/ClientConfiguration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Models;
4 4
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     private function cleanOptions(array $options): array
99 99
     {
100
-        return array_filter($options, function ($value) {
100
+        return array_filter($options, function($value) {
101 101
             return !empty($value) || is_int($value) || is_bool($value) || is_float($value);
102 102
         });
103 103
     }
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,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\DataCollector;
4 4
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         }
55 55
 
56 56
         if (is_array($item) || is_object($item)) {
57
-            return self::prepareUnserializableData((array)$item);
57
+            return self::prepareUnserializableData((array) $item);
58 58
         }
59 59
 
60 60
         return $item;
Please login to merge, or discard this patch.
src/DataCollector/MongoDbDataCollector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\DataCollector;
4 4
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function getTime(): float
82 82
     {
83
-        return (float)($this->data[self::TIME_KEYWORD] * 1000);
83
+        return (float) ($this->data[self::TIME_KEYWORD] * 1000);
84 84
     }
85 85
 
86 86
     /**
Please login to merge, or discard this patch.
src/DependencyInjection/MongoDbBundleExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\DependencyInjection;
4 4
 
Please login to merge, or discard this patch.
src/Capsule/Database.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Capsule;
4 4
 
Please login to merge, or discard this patch.
src/Capsule/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Capsule;
4 4
 
Please login to merge, or discard this patch.
src/Capsule/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Capsule;
4 4
 
Please login to merge, or discard this patch.
src/Fixtures/MongoFixtureInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Facile\MongoDbBundle\Fixtures;
4 4
 
Please login to merge, or discard this patch.