Completed
Pull Request — master (#5)
by Daniel
08:11 queued 06:07
created
lib/FilterFormFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,6 +74,6 @@
 block discarded – undo
74 74
             $expressions[] = $filter->getExpression($field, $filterData);
75 75
         }
76 76
 
77
-        return new Composite(Composite::AND, $expressions);
77
+        return new Composite(Composite:: AND , $expressions);
78 78
     }
79 79
 }
Please login to merge, or discard this patch.
lib/FilterRegistry.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 Psi\Component\Grid\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Filter/BooleanFilterData.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 Psi\Component\Grid\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Filter/StringFilterData.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 Psi\Component\Grid\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Filter/BooleanFilter.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 Psi\Component\Grid\Filter;
6 6
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function configureOptions(OptionsResolver $options)
50 50
     {
51 51
         $options->setDefault('data_class', StringFilterData::class);
52
-        $options->setDefault('empty_data', function (FormInterface $form) {
52
+        $options->setDefault('empty_data', function(FormInterface $form) {
53 53
             return new BooleanFilterData(
54 54
                 $form->get('value')->getData()
55 55
             );
Please login to merge, or discard this patch.