@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | /** |
143 | 143 | * Form Listeners |
144 | 144 | */ |
145 | - ->addEventListener(FormEvents::POST_SUBMIT, static function (FormEvent $event) { |
|
145 | + ->addEventListener(FormEvents::POST_SUBMIT, static function(FormEvent $event) { |
|
146 | 146 | $data = $event->getData(); |
147 | 147 | // clear anti-spam answer if there is no question |
148 | 148 | if (empty($data[ZAuthConstant::MODVAR_REGISTRATION_ANTISPAM_QUESTION])) { |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $resolver->setDefaults([ |
164 | 164 | 'constraints' => [ |
165 | 165 | new Callback([ |
166 | - 'callback' => static function ($data, ExecutionContextInterface $context) { |
|
166 | + 'callback' => static function($data, ExecutionContextInterface $context) { |
|
167 | 167 | if (!empty($data[ZAuthConstant::MODVAR_REGISTRATION_ANTISPAM_QUESTION]) && empty($data[ZAuthConstant::MODVAR_REGISTRATION_ANTISPAM_ANSWER])) { |
168 | 168 | $context |
169 | 169 | ->buildViolation('If a spam protection question is provided, then a spam protection answer must also be provided.') |
@@ -76,10 +76,10 @@ |
||
76 | 76 | [ |
77 | 77 | 'decorate' => true, |
78 | 78 | 'html' => true, |
79 | - 'childOpen' => function ($node) { |
|
79 | + 'childOpen' => function($node) { |
|
80 | 80 | return '<li class="jstree-open" id="' . $this->domTreeNodePrefix . $node['id'] . '">'; |
81 | 81 | }, |
82 | - 'nodeDecorator' => static function ($node) { |
|
82 | + 'nodeDecorator' => static function($node) { |
|
83 | 83 | return '<a href="#">' . $node['title'] . ' (' . $node['id'] . ')</a>'; |
84 | 84 | } |
85 | 85 | ] |
@@ -49,10 +49,10 @@ |
||
49 | 49 | ; |
50 | 50 | $builder->get('options') |
51 | 51 | ->addModelTransformer(new CallbackTransformer( |
52 | - static function ($text) { |
|
52 | + static function($text) { |
|
53 | 53 | return $text; |
54 | 54 | }, |
55 | - static function ($text) { |
|
55 | + static function($text) { |
|
56 | 56 | if (empty($text)) { |
57 | 57 | return '{}'; |
58 | 58 | } |
@@ -35,10 +35,10 @@ |
||
35 | 35 | ; |
36 | 36 | $builder->get('content') |
37 | 37 | ->addModelTransformer(new CallbackTransformer( |
38 | - static function ($originalDescription) { |
|
38 | + static function($originalDescription) { |
|
39 | 39 | return $originalDescription; |
40 | 40 | }, |
41 | - static function ($submittedDescription) { |
|
41 | + static function($submittedDescription) { |
|
42 | 42 | // remove all HTML tags |
43 | 43 | return strip_tags($submittedDescription); |
44 | 44 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | $lifetimeInSeconds, |
38 | 38 | $kernel->getCacheDir() . '/assets/' . $type |
39 | 39 | ); |
40 | - $cachedFile = $cacheService->get($key, function () { |
|
40 | + $cachedFile = $cacheService->get($key, function() { |
|
41 | 41 | throw new \Exception('Combined Assets not found'); |
42 | 42 | }); |
43 | 43 |
@@ -115,7 +115,7 @@ |
||
115 | 115 | $this->kernel->getCacheDir() . '/assets/' . $type |
116 | 116 | ); |
117 | 117 | $key = md5(serialize($assets)) . (int) $this->minify . (int) $this->compress . $this->lifetime . '.combined.' . $type; |
118 | - $cacheService->get($key, function () use ($cachedFiles, $type) { |
|
118 | + $cacheService->get($key, function() use ($cachedFiles, $type) { |
|
119 | 119 | $data = []; |
120 | 120 | foreach ($cachedFiles as $k => $file) { |
121 | 121 | $this->readFile($data, $file, $type); |
@@ -47,7 +47,7 @@ |
||
47 | 47 | if ($form->get('download')->isClicked()) { |
48 | 48 | $data = $form->getData(); |
49 | 49 | $response = new StreamedResponse(); |
50 | - $response->setCallback(function () use ($data, $userRepository) { |
|
50 | + $response->setCallback(function() use ($data, $userRepository) { |
|
51 | 51 | $fields = ['uid', 'uname', 'activated', 'email', 'registrationDate', 'lastLogin', 'groups']; |
52 | 52 | foreach ($fields as $k => $field) { |
53 | 53 | if (isset($data[$field]) && !$data[$field]) { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | { |
28 | 28 | $builder |
29 | 29 | ->add('users', EntityType::class, [ |
30 | - 'choice_attr' => static function () { |
|
30 | + 'choice_attr' => static function() { |
|
31 | 31 | return ['class' => 'user-checkboxes']; |
32 | 32 | }, |
33 | 33 | 'class' => UserEntity::class, |
@@ -86,7 +86,7 @@ |
||
86 | 86 | // Fix the HTML that we want |
87 | 87 | $value = preg_replace_callback( |
88 | 88 | '#\022([^\024]*)\024#', |
89 | - static function ($matches) { |
|
89 | + static function($matches) { |
|
90 | 90 | if (!$matches) { |
91 | 91 | return ''; |
92 | 92 | } |