@@ -62,7 +62,7 @@ |
||
62 | 62 | */ |
63 | 63 | private function getCallback() |
64 | 64 | { |
65 | - return function (LocaleInterface $locale) { |
|
65 | + return function(LocaleInterface $locale) { |
|
66 | 66 | return $locale->getCode(); |
67 | 67 | }; |
68 | 68 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | */ |
43 | 43 | public function buildView(FormView $view, FormInterface $form, array $options) |
44 | 44 | { |
45 | - $locales = array_flip(array_map(function (LocaleInterface $locale) { |
|
45 | + $locales = array_flip(array_map(function(LocaleInterface $locale) { |
|
46 | 46 | return (string) $locale->getCode(); |
47 | 47 | }, $this->localeRepository->findAll())); |
48 | 48 |
@@ -95,7 +95,7 @@ |
||
95 | 95 | $acceptLanguage = trim($request->headers->get('Accept-Language')); |
96 | 96 | |
97 | 97 | if (!empty($acceptLanguage)) { |
98 | - $locales = array_map(function (AcceptLanguage $acceptLanguage) { |
|
98 | + $locales = array_map(function(AcceptLanguage $acceptLanguage) { |
|
99 | 99 | return $acceptLanguage->getType(); |
100 | 100 | }, $this->localeNegotiator->parse($acceptLanguage)); |
101 | 101 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | ->method('setDefinition') |
56 | 56 | ->with( |
57 | 57 | $this->identicalTo($service.'.menu'), |
58 | - $this->callback(function (Definition $definition) use ($service, $alias) { |
|
58 | + $this->callback(function(Definition $definition) use ($service, $alias) { |
|
59 | 59 | return $definition->getClass() === ItemInterface::class |
60 | 60 | && $definition->getTag('knp_menu.menu') === [['alias' => $alias]] |
61 | 61 | && is_array($factory = $definition->getFactory()) |
@@ -75,7 +75,7 @@ |
||
75 | 75 | ->method('dispatch') |
76 | 76 | ->with( |
77 | 77 | $this->identicalTo(MenuBuilderEvents::BUILD), |
78 | - $this->callback(function (MenuBuilderEvent $event) use ($item) { |
|
78 | + $this->callback(function(MenuBuilderEvent $event) use ($item) { |
|
79 | 79 | return $event->getFactory() === $this->factory |
80 | 80 | && $event->getItem() === $item; |
81 | 81 | }) |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $sortType |
101 | 101 | ->expects($this->once()) |
102 | 102 | ->method('configureOptions') |
103 | - ->with($this->callback(function (OptionsResolver $resolver) use ($options) { |
|
103 | + ->with($this->callback(function(OptionsResolver $resolver) use ($options) { |
|
104 | 104 | $resolver->setDefined(array_merge(['builder', 'sort', 'grid'], array_keys($options))); |
105 | 105 | |
106 | 106 | return true; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $sortType |
101 | 101 | ->expects($this->once()) |
102 | 102 | ->method('configureOptions') |
103 | - ->with($this->callback(function (OptionsResolver $resolver) use ($options) { |
|
103 | + ->with($this->callback(function(OptionsResolver $resolver) use ($options) { |
|
104 | 104 | $resolver->setDefined(array_merge(['builder', 'sort', 'grid'], array_keys($options))); |
105 | 105 | |
106 | 106 | return true; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $sortType |
101 | 101 | ->expects($this->once()) |
102 | 102 | ->method('configureOptions') |
103 | - ->with($this->callback(function (OptionsResolver $resolver) use ($options) { |
|
103 | + ->with($this->callback(function(OptionsResolver $resolver) use ($options) { |
|
104 | 104 | $resolver->setDefined(array_merge(['builder', 'sort', 'grid'], array_keys($options))); |
105 | 105 | |
106 | 106 | return true; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $sortType |
101 | 101 | ->expects($this->once()) |
102 | 102 | ->method('configureOptions') |
103 | - ->with($this->callback(function (OptionsResolver $resolver) use ($options) { |
|
103 | + ->with($this->callback(function(OptionsResolver $resolver) use ($options) { |
|
104 | 104 | $resolver->setDefined(array_merge(['builder', 'sort', 'grid'], array_keys($options))); |
105 | 105 | |
106 | 106 | return true; |