@@ -46,8 +46,8 @@  | 
                                                    ||
| 46 | 46 | ->end()  | 
                                                        
| 47 | 47 |                  ->arrayNode('persistence') | 
                                                        
| 48 | 48 | ->validate()  | 
                                                        
| 49 | -                    ->ifTrue(function ($v) { | 
                                                        |
| 50 | -                        return count(array_filter($v, function ($persistence) { | 
                                                        |
| 49 | +                    ->ifTrue(function($v) { | 
                                                        |
| 50 | +                        return count(array_filter($v, function($persistence) { | 
                                                        |
| 51 | 51 | return $persistence['enabled'];  | 
                                                        
| 52 | 52 | })) > 1;  | 
                                                        
| 53 | 53 | })  | 
                                                        
@@ -50,7 +50,7 @@  | 
                                                    ||
| 50 | 50 | public function configureOptions(OptionsResolver $resolver)  | 
                                                        
| 51 | 51 |      { | 
                                                        
| 52 | 52 | $resolver  | 
                                                        
| 53 | -            ->setNormalizer('choices', function () { | 
                                                        |
| 53 | +            ->setNormalizer('choices', function() { | 
                                                        |
| 54 | 54 | /** @var OrganizationInterface[] $organizations */  | 
                                                        
| 55 | 55 | $organizations = $this->organizationRepository->findAvailable();  | 
                                                        
| 56 | 56 | $choices = [];  | 
                                                        
@@ -40,7 +40,7 @@  | 
                                                    ||
| 40 | 40 | public function configureOptions(OptionsResolver $resolver)  | 
                                                        
| 41 | 41 |      { | 
                                                        
| 42 | 42 | $resolver  | 
                                                        
| 43 | -            ->setNormalizer('choices', function () { | 
                                                        |
| 43 | +            ->setNormalizer('choices', function() { | 
                                                        |
| 44 | 44 | /** @var ThemeInterface[] $themes */  | 
                                                        
| 45 | 45 | $themes = $this->themeProvider->getCurrentTenantAvailableThemes();  | 
                                                        
| 46 | 46 | $choices = [];  | 
                                                        
@@ -91,10 +91,10 @@  | 
                                                    ||
| 91 | 91 | |
| 92 | 92 |          $builder->get('cacheTimeInSeconds') | 
                                                        
| 93 | 93 | ->addModelTransformer(new CallbackTransformer(  | 
                                                        
| 94 | -                function ($value) { | 
                                                        |
| 94 | +                function($value) { | 
                                                        |
| 95 | 95 | return $value;  | 
                                                        
| 96 | 96 | },  | 
                                                        
| 97 | -                function ($value) { | 
                                                        |
| 97 | +                function($value) { | 
                                                        |
| 98 | 98 | return (int) $value;  | 
                                                        
| 99 | 99 | }  | 
                                                        
| 100 | 100 | ))  | 
                                                        
@@ -51,7 +51,7 @@  | 
                                                    ||
| 51 | 51 | return true;  | 
                                                        
| 52 | 52 | }  | 
                                                        
| 53 | 53 | |
| 54 | -        $this->logger->error(implode(', ', array_map(function ($error) { | 
                                                        |
| 54 | +        $this->logger->error(implode(', ', array_map(function($error) { | 
                                                        |
| 55 | 55 |              return sprintf('"%s" %s', $error['property'], $error['message']); | 
                                                        
| 56 | 56 | }, $validator->getErrors())));  | 
                                                        
| 57 | 57 | |
@@ -28,7 +28,7 @@ discard block  | 
                                                    ||
| 28 | 28 | ])  | 
                                                        
| 29 | 29 | ;  | 
                                                        
| 30 | 30 | |
| 31 | -        $formModifier = function (FormInterface $form, ?string $type) { | 
                                                        |
| 31 | +        $formModifier = function(FormInterface $form, ?string $type) { | 
                                                        |
| 32 | 32 |              if (OutputChannelInterface::TYPE_WORDPRESS === $type) { | 
                                                        
| 33 | 33 |                  $form->add('config', WordpressOutputChannelConfigType::class); | 
                                                        
| 34 | 34 | }  | 
                                                        
@@ -36,7 +36,7 @@ discard block  | 
                                                    ||
| 36 | 36 | |
| 37 | 37 | $builder->addEventListener(  | 
                                                        
| 38 | 38 | FormEvents::POST_SET_DATA,  | 
                                                        
| 39 | -            function (FormEvent $event) use ($formModifier) { | 
                                                        |
| 39 | +            function(FormEvent $event) use ($formModifier) { | 
                                                        |
| 40 | 40 | $data = $event->getData();  | 
                                                        
| 41 | 41 |                  if (null !== $event->getData()) { | 
                                                        
| 42 | 42 | $formModifier($event->getForm(), $data->getType());  | 
                                                        
@@ -46,7 +46,7 @@ discard block  | 
                                                    ||
| 46 | 46 | |
| 47 | 47 |          $builder->get('type')->addEventListener( | 
                                                        
| 48 | 48 | FormEvents::POST_SUBMIT,  | 
                                                        
| 49 | -            function (FormEvent $event) use ($formModifier) { | 
                                                        |
| 49 | +            function(FormEvent $event) use ($formModifier) { | 
                                                        |
| 50 | 50 | $type = $event->getForm()->getData();  | 
                                                        
| 51 | 51 | |
| 52 | 52 | $formModifier($event->getForm()->getParent(), $type);  | 
                                                        
@@ -76,7 +76,7 @@ discard block  | 
                                                    ||
| 76 | 76 |                              ->scalarNode('value') | 
                                                        
| 77 | 77 | ->beforeNormalization()  | 
                                                        
| 78 | 78 | ->ifArray()  | 
                                                        
| 79 | -                                ->then(function ($value) { | 
                                                        |
| 79 | +                                ->then(function($value) { | 
                                                        |
| 80 | 80 | return json_encode($value);  | 
                                                        
| 81 | 81 | })  | 
                                                        
| 82 | 82 | ->end()  | 
                                                        
@@ -85,7 +85,7 @@ discard block  | 
                                                    ||
| 85 | 85 |                              ->scalarNode('type') | 
                                                        
| 86 | 86 |                                  ->defaultValue('string') | 
                                                        
| 87 | 87 | ->validate()  | 
                                                        
| 88 | -                                    ->always(function ($v) { | 
                                                        |
| 88 | +                                    ->always(function($v) { | 
                                                        |
| 89 | 89 |                                          if (!in_array($v, ['string', 'array', 'boolean'])) { | 
                                                        
| 90 | 90 | throw new InvalidTypeException();  | 
                                                        
| 91 | 91 | }  | 
                                                        
@@ -40,10 +40,10 @@  | 
                                                    ||
| 40 | 40 | ;  | 
                                                        
| 41 | 41 | |
| 42 | 42 |          $builder->get('value')->addModelTransformer(new CallbackTransformer( | 
                                                        
| 43 | -            function ($value) { | 
                                                        |
| 43 | +            function($value) { | 
                                                        |
| 44 | 44 | return $value;  | 
                                                        
| 45 | 45 | },  | 
                                                        
| 46 | -            function ($value) { | 
                                                        |
| 46 | +            function($value) { | 
                                                        |
| 47 | 47 | $allowed = ['true', 'false', '1', '0', null];  | 
                                                        
| 48 | 48 | |
| 49 | 49 |                  if (\is_bool($value) || \in_array($value, $allowed, true)) { | 
                                                        
@@ -108,7 +108,7 @@  | 
                                                    ||
| 108 | 108 |      { | 
                                                        
| 109 | 109 | $themes = \array_filter(  | 
                                                        
| 110 | 110 | $this->themeLoader->load(),  | 
                                                        
| 111 | -            function ($element) use (&$themeName) { | 
                                                        |
| 111 | +            function($element) use (&$themeName) { | 
                                                        |
| 112 | 112 | return $element->getName() === $themeName;  | 
                                                        
| 113 | 113 | }  | 
                                                        
| 114 | 114 | );  |