Completed
Push — master ( 3dbf35...df59ed )
by Dominik
05:57 queued 02:30
created
inc/assets.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@  discard block
 block discarded – undo
3 3
 use Flynt\Utils\Asset;
4 4
 use Flynt\Utils\ScriptLoader;
5 5
 
6
-call_user_func(function () {
6
+call_user_func(function() {
7 7
     $loader = new ScriptLoader();
8 8
     add_filter('script_loader_tag', [$loader, 'filterScriptLoaderTag'], 10, 2);
9 9
 });
10 10
 
11
-add_action('wp_enqueue_scripts', function () {
11
+add_action('wp_enqueue_scripts', function() {
12 12
     Asset::enqueue([
13 13
         'name' => 'Flynt/assets',
14 14
         'path' => 'assets/main.js',
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     ]);
23 23
 });
24 24
 
25
-add_action('admin_enqueue_scripts', function () {
25
+add_action('admin_enqueue_scripts', function() {
26 26
     Asset::enqueue([
27 27
         'name' => 'Flynt/assets/admin',
28 28
         'path' => 'assets/admin.js',
Please login to merge, or discard this patch.