@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Component\Grid; |
6 | 6 | |
@@ -74,6 +74,6 @@ discard block |
||
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 | } |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Symfony\Component\Form\AbstractType; |
8 | 8 | use Symfony\Component\Form\Extension\Core\Type\FormType; |
9 | 9 | use Symfony\Component\Form\FormBuilderInterface; |
10 | -use Symfony\Component\OptionsResolver\Options; |
|
11 | 10 | use Symfony\Component\OptionsResolver\OptionsResolver; |
12 | 11 | use Psi\Component\Grid\CellWithFormInterface; |
13 | 12 | use Psi\Component\Grid\RowData; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Component\Grid; |
6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | { |
36 | 36 | if (null === $this->numberOfRecords) { |
37 | 37 | throw new \RuntimeException( |
38 | - 'Cannot determine the last page when the total number of ' . |
|
38 | + 'Cannot determine the last page when the total number of '. |
|
39 | 39 | 'records has not been provided.' |
40 | 40 | ); |
41 | 41 | } |
@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Component\Grid; |
6 | 6 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | public function getUrlParametersForFilter() |
26 | 26 | { |
27 | - return array_filter($this->options->getUrlParameters(), function ($key) { |
|
27 | + return array_filter($this->options->getUrlParameters(), function($key) { |
|
28 | 28 | return $key !== 'filter'; |
29 | 29 | }, ARRAY_FILTER_USE_KEY); |
30 | 30 | } |
@@ -1,6 +1,6 @@ |
||
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 |