@@ -34,18 +34,18 @@ |
||
34 | 34 | use function script; |
35 | 35 | |
36 | 36 | class LoadAdditionalSettingsScriptsListener implements IEventListener { |
37 | - public function handle(Event $event): void { |
|
38 | - if (!function_exists('style')) { |
|
39 | - // This is hacky, but we need to load the template class |
|
40 | - class_exists(Template::class, true); |
|
41 | - } |
|
37 | + public function handle(Event $event): void { |
|
38 | + if (!function_exists('style')) { |
|
39 | + // This is hacky, but we need to load the template class |
|
40 | + class_exists(Template::class, true); |
|
41 | + } |
|
42 | 42 | |
43 | - script('core', [ |
|
44 | - 'dist/systemtags', |
|
45 | - ]); |
|
43 | + script('core', [ |
|
44 | + 'dist/systemtags', |
|
45 | + ]); |
|
46 | 46 | |
47 | - script(Application::APP_ID, [ |
|
48 | - 'workflowengine', |
|
49 | - ]); |
|
50 | - } |
|
47 | + script(Application::APP_ID, [ |
|
48 | + 'workflowengine', |
|
49 | + ]); |
|
50 | + } |
|
51 | 51 | } |