@@ -39,7 +39,7 @@ |
||
| 39 | 39 | |
| 40 | 40 | public function configureOptions(OptionsResolver $resolver): void |
| 41 | 41 | { |
| 42 | - $helpTranslationDomainNormalizer = static function (Options $options, $helpTranslationDomain) { |
|
| 42 | + $helpTranslationDomainNormalizer = static function(Options $options, $helpTranslationDomain) { |
|
| 43 | 43 | if (null === $helpTranslationDomain && $options->offsetExists('translation_domain')) { |
| 44 | 44 | return $options->offsetGet('translation_domain'); |
| 45 | 45 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | public function finishView(FormView $view, FormInterface $form, array $options): void |
| 23 | 23 | { |
| 24 | - $format = 'HH'; |
|
| 24 | + $format = 'HH'; |
|
| 25 | 25 | |
| 26 | 26 | if ($options['with_minutes']) { |
| 27 | 27 | $format .= ':mm'; |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $dpKey = substr($key, 3); |
| 74 | 74 | $dpKey = preg_replace_callback( |
| 75 | 75 | '/_([a-z])/', |
| 76 | - static function ($c) { |
|
| 76 | + static function($c) { |
|
| 77 | 77 | return strtoupper($c[1]); |
| 78 | 78 | }, |
| 79 | 79 | $dpKey |