@@ -85,7 +85,7 @@ |
||
85 | 85 | $currentTheme = $tenant->getThemeName(); |
86 | 86 | $themes = array_filter( |
87 | 87 | $this->get('sylius.repository.theme')->findAll(), |
88 | - function ($element) use (&$tenantCode, $currentTheme) { |
|
88 | + function($element) use (&$tenantCode, $currentTheme) { |
|
89 | 89 | if (strpos($element->getName(), ThemeHelper::SUFFIX_SEPARATOR.$tenantCode)) { |
90 | 90 | return true; |
91 | 91 | } |
@@ -196,7 +196,7 @@ |
||
196 | 196 | */ |
197 | 197 | private function getArrayOfIdsFromRoutesArray(array $routes): array |
198 | 198 | { |
199 | - return array_map(function ($route) { |
|
199 | + return array_map(function($route) { |
|
200 | 200 | return $route->getId(); |
201 | 201 | }, $routes); |
202 | 202 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $routeNodeDefinition = $routesNodeDefinition->prototype('array'); |
143 | 143 | $routeNodeDefinition |
144 | 144 | ->validate() |
145 | - ->ifTrue(function ($route) { |
|
145 | + ->ifTrue(function($route) { |
|
146 | 146 | return [] === $route; |
147 | 147 | }) |
148 | 148 | ->thenInvalid('Route cannot be empty!') |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | $menuNodeDefinition = $menusNodeDefinition->prototype('array'); |
171 | 171 | $menuNodeDefinition |
172 | 172 | ->validate() |
173 | - ->ifTrue(function ($menu) { |
|
173 | + ->ifTrue(function($menu) { |
|
174 | 174 | return [] === $menu; |
175 | 175 | }) |
176 | 176 | ->thenInvalid('Menu cannot be empty!') |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | $childrenNodeDefinition = $childrensNodeDefinition->prototype('array'); |
189 | 189 | $childrenNodeDefinition |
190 | 190 | ->validate() |
191 | - ->ifTrue(function ($menu) { |
|
191 | + ->ifTrue(function($menu) { |
|
192 | 192 | return [] === $menu; |
193 | 193 | }) |
194 | 194 | ->thenInvalid('Menu cannot be empty!') |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | $childrensChildrenNodeDefinition = $childrensChildrensNodeDefinition->prototype('array'); |
207 | 207 | $childrensChildrenNodeDefinition |
208 | 208 | ->validate() |
209 | - ->ifTrue(function ($menu) { |
|
209 | + ->ifTrue(function($menu) { |
|
210 | 210 | return [] === $menu; |
211 | 211 | }) |
212 | 212 | ->thenInvalid('Menu cannot be empty!') |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | $containerNodeDefinition = $containersNodeDefinition->prototype('array'); |
232 | 232 | $containerNodeDefinition |
233 | 233 | ->validate() |
234 | - ->ifTrue(function ($widget) { |
|
234 | + ->ifTrue(function($widget) { |
|
235 | 235 | return [] === $widget; |
236 | 236 | }) |
237 | 237 | ->thenInvalid('Widget cannot be empty!') |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | $containerNodeDefinition = $containersNodeDefinition->prototype('array'); |
255 | 255 | $containerNodeDefinition |
256 | 256 | ->validate() |
257 | - ->ifTrue(function ($widget) { |
|
257 | + ->ifTrue(function($widget) { |
|
258 | 258 | return [] === $widget; |
259 | 259 | }) |
260 | 260 | ->thenInvalid('Content List cannot be empty!') |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | $widgetNodeDefinition = $widgetsNodeDefinition->prototype('array'); |
279 | 279 | $widgetNodeDefinition |
280 | 280 | ->validate() |
281 | - ->ifTrue(function ($widget) { |
|
281 | + ->ifTrue(function($widget) { |
|
282 | 282 | return [] === $widget; |
283 | 283 | }) |
284 | 284 | ->thenInvalid('Widget cannot be empty!') |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | |
309 | 309 | $screenshotNodeDefinition |
310 | 310 | ->validate() |
311 | - ->ifTrue(function ($screenshot) { |
|
311 | + ->ifTrue(function($screenshot) { |
|
312 | 312 | return [] === $screenshot || ['path' => ''] === $screenshot; |
313 | 313 | }) |
314 | 314 | ->thenInvalid('Screenshot cannot be empty!') |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | $screenshotNodeDefinition |
317 | 317 | ->beforeNormalization() |
318 | 318 | ->ifString() |
319 | - ->then(function ($value) { |
|
319 | + ->then(function($value) { |
|
320 | 320 | return ['path' => $value]; |
321 | 321 | }) |
322 | 322 | ; |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | $authorNodeDefinition = $authorsNodeDefinition->prototype('array'); |
343 | 343 | $authorNodeDefinition |
344 | 344 | ->validate() |
345 | - ->ifTrue(function ($author) { |
|
345 | + ->ifTrue(function($author) { |
|
346 | 346 | return [] === $author; |
347 | 347 | }) |
348 | 348 | ->thenInvalid('Author cannot be empty!') |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | $settingNodeDefinition = $settingsNodeDefinition->prototype('array'); |
371 | 371 | $settingNodeDefinition |
372 | 372 | ->validate() |
373 | - ->ifTrue(function ($setting) { |
|
373 | + ->ifTrue(function($setting) { |
|
374 | 374 | return [] === $setting; |
375 | 375 | }) |
376 | 376 | ->thenInvalid('Setting cannot be empty!') |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $this->initialized = true; |
89 | 89 | $stringyClass = new \ReflectionClass('Stringy\Stringy'); |
90 | 90 | $methods = $stringyClass->getMethods(\ReflectionMethod::IS_PUBLIC); |
91 | - $names = array_map(function ($value) { |
|
91 | + $names = array_map(function($value) { |
|
92 | 92 | return $value->getName(); |
93 | 93 | }, $methods); |
94 | 94 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | if (array_key_exists($name, $this->environment->getFunctions())) { |
106 | 106 | continue; |
107 | 107 | } |
108 | - $this->functions[$name] = new \Twig_SimpleFunction($name, function () use ($name) { |
|
108 | + $this->functions[$name] = new \Twig_SimpleFunction($name, function() use ($name) { |
|
109 | 109 | return call_user_func_array(['Stringy\StaticStringy', $name], func_get_args()); |
110 | 110 | }); |
111 | 111 | } else { |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | if (array_key_exists($name, $this->environment->getFilters())) { |
114 | 114 | continue; |
115 | 115 | } |
116 | - $this->filters[$name] = new \Twig_SimpleFilter($name, function () use ($name) { |
|
116 | + $this->filters[$name] = new \Twig_SimpleFilter($name, function() use ($name) { |
|
117 | 117 | return (string) call_user_func_array(['Stringy\StaticStringy', $name], func_get_args()); |
118 | 118 | }); |
119 | 119 | } |
@@ -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; |
@@ -111,7 +111,7 @@ |
||
111 | 111 | { |
112 | 112 | if (!$input->getArgument($name)) { |
113 | 113 | $question = new Question(sprintf('<question>Please enter %s:</question>', $name)); |
114 | - $question->setValidator(function ($argument) use ($name) { |
|
114 | + $question->setValidator(function($argument) use ($name) { |
|
115 | 115 | if (empty($argument)) { |
116 | 116 | throw new \RuntimeException(sprintf('The %s can not be empty', $name)); |
117 | 117 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $items = $this->filterTextItems($package->getItems()); |
92 | 92 | |
93 | 93 | $map = $items->map( |
94 | - function (ItemInterface $item) { |
|
94 | + function(ItemInterface $item) { |
|
95 | 95 | return ' '.$item->getDescription(); |
96 | 96 | } |
97 | 97 | ); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | { |
112 | 112 | $items = $this->filterTextItems($package->getItems()); |
113 | 113 | |
114 | - $authors = array_filter(array_values(array_map(function (ItemInterface $item) { |
|
114 | + $authors = array_filter(array_values(array_map(function(ItemInterface $item) { |
|
115 | 115 | $metadata = $item->getMetadata(); |
116 | 116 | |
117 | 117 | return $metadata['byline']; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | private function filterTextItems(Collection $items) |
133 | 133 | { |
134 | 134 | return $items->filter( |
135 | - function (ItemInterface $item) { |
|
135 | + function(ItemInterface $item) { |
|
136 | 136 | $this->ensureTypeIsAllowed($item->getType()); |
137 | 137 | |
138 | 138 | return ItemInterface::TYPE_TEXT === $item->getType(); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | */ |
148 | 148 | private function populateBody(PackageInterface $package) |
149 | 149 | { |
150 | - return $package->getBody().' '.implode('', array_map(function (ItemInterface $item) { |
|
150 | + return $package->getBody().' '.implode('', array_map(function(ItemInterface $item) { |
|
151 | 151 | $this->ensureTypeIsAllowed($item->getType()); |
152 | 152 | |
153 | 153 | return $item->getBody(); |
@@ -109,7 +109,7 @@ |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | $originalRendition = $item->getRenditions()->filter( |
112 | - function (RenditionInterface $rendition) { |
|
112 | + function(RenditionInterface $rendition) { |
|
113 | 113 | return 'original' === $rendition->getName(); |
114 | 114 | } |
115 | 115 | )->first(); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | ]) |
42 | 42 | ; |
43 | 43 | |
44 | - $formModifier = function (FormInterface $form, ?string $type) { |
|
44 | + $formModifier = function(FormInterface $form, ?string $type) { |
|
45 | 45 | if (OutputChannelInterface::TYPE_WORDPRESS === $type) { |
46 | 46 | $form->add('config', WordpressOutputChannelConfigType::class); |
47 | 47 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $builder->addEventListener( |
51 | 51 | FormEvents::POST_SET_DATA, |
52 | - function (FormEvent $event) use ($formModifier) { |
|
52 | + function(FormEvent $event) use ($formModifier) { |
|
53 | 53 | $data = $event->getData(); |
54 | 54 | if (null !== $event->getData()) { |
55 | 55 | $formModifier($event->getForm(), $data->getType()); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | $builder->get('type')->addEventListener( |
61 | 61 | FormEvents::POST_SUBMIT, |
62 | - function (FormEvent $event) use ($formModifier) { |
|
62 | + function(FormEvent $event) use ($formModifier) { |
|
63 | 63 | $type = $event->getForm()->getData(); |
64 | 64 | |
65 | 65 | $formModifier($event->getForm()->getParent(), $type); |