@@ -53,7 +53,7 @@ |
||
| 53 | 53 | |
| 54 | 54 | public function getKeywordsNames(): array |
| 55 | 55 | { |
| 56 | - return array_map(function ($keyword) { |
|
| 56 | + return array_map(function($keyword) { |
|
| 57 | 57 | return $keyword->getName(); |
| 58 | 58 | }, $this->keywords->toArray()); |
| 59 | 59 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $items = $package->getItems()->filter( |
| 44 | - function ($entry) use ($guids) { |
|
| 44 | + function($entry) use ($guids) { |
|
| 45 | 45 | return !\in_array($entry->getGuid(), $guids, true); |
| 46 | 46 | } |
| 47 | 47 | ); |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | if (null !== ($packageItems = $packageItem->getItems()) && 0 !== $packageItems->count()) { |
| 59 | 59 | $packageItems = $packageItem->getItems()->filter( |
| 60 | - function ($entry) use ($guids) { |
|
| 60 | + function($entry) use ($guids) { |
|
| 61 | 61 | return !\in_array($entry->getGuid(), $guids, true); |
| 62 | 62 | } |
| 63 | 63 | ); |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | private function mapNames(array $values): array |
| 386 | 386 | { |
| 387 | - return array_map(function ($subject) { |
|
| 387 | + return array_map(function($subject) { |
|
| 388 | 388 | if (\is_array($subject) && \array_key_exists('name', $subject)) { |
| 389 | 389 | return $subject['name']; |
| 390 | 390 | } |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | |
| 396 | 396 | private function mapCodes(array $values): array |
| 397 | 397 | { |
| 398 | - return array_map(function ($subject) { |
|
| 398 | + return array_map(function($subject) { |
|
| 399 | 399 | if (\is_array($subject) && \array_key_exists('code', $subject)) { |
| 400 | 400 | return $subject['code']; |
| 401 | 401 | } |
@@ -406,7 +406,7 @@ discard block |
||
| 406 | 406 | |
| 407 | 407 | private function mapSchemes(array $values): array |
| 408 | 408 | { |
| 409 | - return array_map(function ($subject) { |
|
| 409 | + return array_map(function($subject) { |
|
| 410 | 410 | if (\is_array($subject) && \array_key_exists('scheme', $subject)) { |
| 411 | 411 | return $subject['scheme']; |
| 412 | 412 | } |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | $package = $event->getPackage(); |
| 49 | 49 | $article = $event->getArticle(); |
| 50 | 50 | |
| 51 | - $groups = $package->getGroups()->filter(function ($group) { |
|
| 51 | + $groups = $package->getGroups()->filter(function($group) { |
|
| 52 | 52 | return GroupInterface::TYPE_RELATED !== $group->getType(); |
| 53 | 53 | }); |
| 54 | 54 | |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | $this->removeOldRelatedArticles($article); |
| 51 | 51 | |
| 52 | - $relatedItemsGroups = $package->getGroups()->filter(function ($group) { |
|
| 52 | + $relatedItemsGroups = $package->getGroups()->filter(function($group) { |
|
| 53 | 53 | return GroupInterface::TYPE_RELATED === $group->getType(); |
| 54 | 54 | }); |
| 55 | 55 | |
@@ -143,7 +143,7 @@ |
||
| 143 | 143 | |
| 144 | 144 | $ids = array_column($rules['tenants'], 'tenant'); |
| 145 | 145 | $ids = array_unique($ids); |
| 146 | - $tenants = array_filter($rules['tenants'], function ($key, $value) use ($ids) { |
|
| 146 | + $tenants = array_filter($rules['tenants'], function($key, $value) use ($ids) { |
|
| 147 | 147 | return array_key_exists($value, $ids); |
| 148 | 148 | }, ARRAY_FILTER_USE_BOTH); |
| 149 | 149 | |
@@ -47,8 +47,7 @@ |
||
| 47 | 47 | { |
| 48 | 48 | $this->data = [ |
| 49 | 49 | 'currentPage' => $this->context->getCurrentPage() instanceof MetaInterface ? |
| 50 | - $this->getRouteData($this->context->getCurrentPage()->getValues()) : |
|
| 51 | - [], |
|
| 50 | + $this->getRouteData($this->context->getCurrentPage()->getValues()) : [], |
|
| 52 | 51 | 'registeredMeta' => $this->context->getRegisteredMeta(), |
| 53 | 52 | ]; |
| 54 | 53 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $this->initialized = true; |
| 93 | 93 | $stringyClass = new \ReflectionClass('Stringy\Stringy'); |
| 94 | 94 | $methods = $stringyClass->getMethods(\ReflectionMethod::IS_PUBLIC); |
| 95 | - $names = array_map(function ($value) { |
|
| 95 | + $names = array_map(function($value) { |
|
| 96 | 96 | return $value->getName(); |
| 97 | 97 | }, $methods); |
| 98 | 98 | |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | if (array_key_exists($name, $this->environment->getFunctions())) { |
| 110 | 110 | continue; |
| 111 | 111 | } |
| 112 | - $this->functions[$name] = new TwigFunction($name, function () use ($name) { |
|
| 112 | + $this->functions[$name] = new TwigFunction($name, function() use ($name) { |
|
| 113 | 113 | return call_user_func_array(['Stringy\StaticStringy', $name], func_get_args()); |
| 114 | 114 | }); |
| 115 | 115 | } else { |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | if (array_key_exists($name, $this->environment->getFilters())) { |
| 118 | 118 | continue; |
| 119 | 119 | } |
| 120 | - $this->filters[$name] = new TwigFilter($name, function () use ($name) { |
|
| 120 | + $this->filters[$name] = new TwigFilter($name, function() use ($name) { |
|
| 121 | 121 | return (string) call_user_func_array(['Stringy\StaticStringy', $name], func_get_args()); |
| 122 | 122 | }); |
| 123 | 123 | } |
@@ -79,22 +79,22 @@ |
||
| 79 | 79 | public function getFilters() |
| 80 | 80 | { |
| 81 | 81 | return [ |
| 82 | - new TwigFilter('start', function ($node, $value) { |
|
| 82 | + new TwigFilter('start', function($node, $value) { |
|
| 83 | 83 | $node['_collection_type_filters']['start'] = $value; |
| 84 | 84 | |
| 85 | 85 | return $node; |
| 86 | 86 | }, ['needs_context' => false]), |
| 87 | - new TwigFilter('limit', function ($node, $value) { |
|
| 87 | + new TwigFilter('limit', function($node, $value) { |
|
| 88 | 88 | $node['_collection_type_filters']['limit'] = $value; |
| 89 | 89 | |
| 90 | 90 | return $node; |
| 91 | 91 | }, ['needs_context' => false]), |
| 92 | - new TwigFilter('order', function ($node, $value1, $value2) { |
|
| 92 | + new TwigFilter('order', function($node, $value1, $value2) { |
|
| 93 | 93 | $node['_collection_type_filters']['order'][] = [$value1, $value2]; |
| 94 | 94 | |
| 95 | 95 | return $node; |
| 96 | 96 | }, ['needs_context' => false]), |
| 97 | - new TwigFilter('dateRange', function ($node, $value1, $value2) { |
|
| 97 | + new TwigFilter('dateRange', function($node, $value1, $value2) { |
|
| 98 | 98 | $node['_collection_type_filters']['date_range'] = [$value1, $value2]; |
| 99 | 99 | |
| 100 | 100 | return $node; |