@@ -31,7 +31,7 @@ |
||
| 31 | 31 | { |
| 32 | 32 | return array_filter( |
| 33 | 33 | $this->getFilterModels(), |
| 34 | - function (FilterModelInterface $filterModel) { |
|
| 34 | + function(FilterModelInterface $filterModel) { |
|
| 35 | 35 | return $filterModel->isImposed(); |
| 36 | 36 | } |
| 37 | 37 | ); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | ) { |
| 52 | 52 | return array_filter( |
| 53 | 53 | $this->getFilterImposers(), |
| 54 | - function (FilterImposerInterface $imposer) use ($searchingContext) { |
|
| 54 | + function(FilterImposerInterface $imposer) use ($searchingContext) { |
|
| 55 | 55 | return $imposer->supportsSearchingContext($searchingContext); |
| 56 | 56 | } |
| 57 | 57 | ); |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | $joinParts = $joinParts[$entity]; |
| 49 | 49 | $existingJoin = array_filter( |
| 50 | 50 | $joinParts, |
| 51 | - function (Join $joinObj) use ($alias, $join) { |
|
| 51 | + function(Join $joinObj) use ($alias, $join) { |
|
| 52 | 52 | return $joinObj->getAlias() == $alias |
| 53 | 53 | && $joinObj->getJoin() == $join; |
| 54 | 54 | } |