@@ -39,7 +39,7 @@ |
||
39 | 39 | $allowedConfigs = new AssociativeArray(); |
40 | 40 | |
41 | 41 | $allConfigs = $this->configManager->getAllConfigs(); |
42 | - array_walk_recursive($allConfigs, function ($config, $key) use($allowedConfigs, $action) { |
|
42 | + array_walk_recursive($allConfigs, function($config, $key) use($allowedConfigs, $action) { |
|
43 | 43 | if (is_object($config)) { |
44 | 44 | if ($config->isHidden()) { |
45 | 45 | return; |
@@ -50,11 +50,11 @@ |
||
50 | 50 | { |
51 | 51 | $builder->add('save', SubmitType::class, ['label' => 'Save configs']); |
52 | 52 | |
53 | - $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) { |
|
53 | + $builder->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) { |
|
54 | 54 | $data = $event->getData(); |
55 | 55 | $form = $event->getForm(); |
56 | 56 | |
57 | - $this->scope = $data['scope'] ?? null;; |
|
57 | + $this->scope = $data['scope'] ?? null; ; |
|
58 | 58 | $this->configs = $data['configs'] ?? []; |
59 | 59 | |
60 | 60 | $scopeObject = new Scope($this->scope); |