Completed
Pull Request — master (#7)
by Alessandro
03:00 queued 52s
created
src/Models/ClientConfiguration.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\Models;
6 6
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     private function cleanOptions(array $options): array
100 100
     {
101
-        return array_filter($options, function ($value) {
101
+        return array_filter($options, function($value) {
102 102
             return !empty($value) || is_int($value) || is_bool($value) || is_float($value);
103 103
         });
104 104
     }
Please login to merge, or discard this patch.