Passed
Push — master ( 217243...82984b )
by Christoph
11:20 queued 10s
created
apps/workflowengine/lib/Listener/LoadAdditionalSettingsScriptsListener.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -34,18 +34,18 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.