@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher\Chain; |
5 | 5 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher\CriteriaBuilder\Collection; |
5 | 5 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | ): CriteriaBuilderCollectionInterface { |
45 | 45 | return new self(array_filter( |
46 | 46 | $this->getItems(), |
47 | - function (CriteriaBuilderInterface $criteriaBuilder) use ($searchingContext) { |
|
47 | + function(CriteriaBuilderInterface $criteriaBuilder) use ($searchingContext) { |
|
48 | 48 | return $criteriaBuilder->supportsSearchingContext($searchingContext); |
49 | 49 | } |
50 | 50 | )); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher\CriteriaBuilder\Doctrine; |
5 | 5 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | ): QueryBuilder { |
82 | 82 | $existingJoin = array_filter( |
83 | 83 | $joinParts, |
84 | - function (Join $joinObj) use ($alias, $join, $joinType) { |
|
84 | + function(Join $joinObj) use ($alias, $join, $joinType) { |
|
85 | 85 | return $joinObj->getJoinType() == $joinType |
86 | 86 | && $joinObj->getAlias() == $alias |
87 | 87 | && $joinObj->getJoin() == $join; |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher\ParameterGenerator; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace KGzocha\Searcher; |
5 | 5 |