@@ -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; |