@@ -53,7 +53,7 @@ |
||
53 | 53 | |
54 | 54 | public function getAuthorsNames(): array |
55 | 55 | { |
56 | - return array_map(function ($author) { |
|
56 | + return array_map(function($author) { |
|
57 | 57 | return $author->getName(); |
58 | 58 | }, $this->authors->toArray()); |
59 | 59 | } |
@@ -65,7 +65,7 @@ |
||
65 | 65 | public function registerPeriodicTimer(Topic $topic) |
66 | 66 | { |
67 | 67 | $n = 1; |
68 | - $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function () use ($topic, &$n) { |
|
68 | + $this->periodicTimer->addPeriodicTimer($this, 'ping', 5, function() use ($topic, &$n) { |
|
69 | 69 | $topic->broadcast(['ping' => $n]); |
70 | 70 | |
71 | 71 | ++$n; |
@@ -166,7 +166,7 @@ |
||
166 | 166 | private function findOriginalRendition(ItemInterface $item): RenditionInterface |
167 | 167 | { |
168 | 168 | return $item->getRenditions()->filter( |
169 | - function (RenditionInterface $rendition) { |
|
169 | + function(RenditionInterface $rendition) { |
|
170 | 170 | return 'original' === $rendition->getName(); |
171 | 171 | } |
172 | 172 | )->first(); |
@@ -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 | } |
@@ -76,22 +76,22 @@ |
||
76 | 76 | public function getFilters() |
77 | 77 | { |
78 | 78 | return [ |
79 | - new \Twig_SimpleFilter('start', function ($node, $value) { |
|
79 | + new \Twig_SimpleFilter('start', function($node, $value) { |
|
80 | 80 | $node['_collection_type_filters']['start'] = $value; |
81 | 81 | |
82 | 82 | return $node; |
83 | 83 | }, ['needs_context' => false]), |
84 | - new \Twig_SimpleFilter('limit', function ($node, $value) { |
|
84 | + new \Twig_SimpleFilter('limit', function($node, $value) { |
|
85 | 85 | $node['_collection_type_filters']['limit'] = $value; |
86 | 86 | |
87 | 87 | return $node; |
88 | 88 | }, ['needs_context' => false]), |
89 | - new \Twig_SimpleFilter('order', function ($node, $value1, $value2) { |
|
89 | + new \Twig_SimpleFilter('order', function($node, $value1, $value2) { |
|
90 | 90 | $node['_collection_type_filters']['order'][] = [$value1, $value2]; |
91 | 91 | |
92 | 92 | return $node; |
93 | 93 | }, ['needs_context' => false]), |
94 | - new \Twig_SimpleFilter('dateRange', function ($node, $value1, $value2) { |
|
94 | + new \Twig_SimpleFilter('dateRange', function($node, $value1, $value2) { |
|
95 | 95 | $node['_collection_type_filters']['date_range'] = [$value1, $value2]; |
96 | 96 | |
97 | 97 | return $node; |
@@ -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 |
@@ -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 |