Passed
Push — master ( 7a6883...98ea47 )
by
unknown
04:05
created
Components/NavigationBurger/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 use Flynt\Utils\Asset;
7 7
 use Flynt\Utils\Options;
8 8
 
9
-add_action('init', function () {
9
+add_action('init', function() {
10 10
     register_nav_menus([
11 11
         'navigation_burger' => __('Navigation Burger', 'flynt')
12 12
     ]);
13 13
 });
14 14
 
15
-add_filter('Flynt/addComponentData?name=NavigationBurger', function ($data) {
15
+add_filter('Flynt/addComponentData?name=NavigationBurger', function($data) {
16 16
     $data['menu'] = new Timber\Menu('navigation_burger');
17 17
     $data['logo'] = [
18 18
         'src' => Asset::requireUrl(
Please login to merge, or discard this patch.
Components/NavigationMain/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@
 block discarded – undo
5 5
 use Timber;
6 6
 use Flynt\Utils\Asset;
7 7
 
8
-add_action('init', function () {
8
+add_action('init', function() {
9 9
     register_nav_menus([
10 10
         'navigation_main' => __('Navigation Main', 'flynt')
11 11
     ]);
12 12
 });
13 13
 
14
-add_filter('Flynt/addComponentData?name=NavigationMain', function ($data) {
14
+add_filter('Flynt/addComponentData?name=NavigationMain', function($data) {
15 15
     $data['menu'] = new Timber\Menu('navigation_main');
16 16
     $data['logo'] = [
17 17
         'src' => Asset::requireUrl('Components/NavigationMain/Assets/logo.svg'),
Please login to merge, or discard this patch.
inc/tinyMce.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 namespace Flynt\TinyMce;
10 10
 
11 11
 // First Toolbar
12
-add_filter('mce_buttons', function ($buttons) {
12
+add_filter('mce_buttons', function($buttons) {
13 13
     $config = getConfig();
14 14
     if ($config && isset($config['toolbars'])) {
15 15
         $toolbars = $config['toolbars'];
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
 });
22 22
 
23 23
 // Second Toolbar
24
-add_filter('mce_buttons_2', function ($buttons) {
24
+add_filter('mce_buttons_2', function($buttons) {
25 25
     return [];
26 26
 });
27 27
 
28
-add_filter('tiny_mce_before_init', function ($init) {
28
+add_filter('tiny_mce_before_init', function($init) {
29 29
     $config = getConfig();
30 30
     if ($config) {
31 31
         if (isset($config['blockformats'])) {
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
     return $init;
41 41
 });
42 42
 
43
-add_filter('acf/fields/wysiwyg/toolbars', function ($toolbars) {
43
+add_filter('acf/fields/wysiwyg/toolbars', function($toolbars) {
44 44
     // Load Toolbars and parse them into TinyMCE
45 45
     $config = getConfig();
46 46
     if ($config && !empty($config['toolbars'])) {
47
-        $toolbars = array_map(function ($toolbar) {
47
+        $toolbars = array_map(function($toolbar) {
48 48
             array_unshift($toolbar, []);
49 49
             return $toolbar;
50 50
         }, $config['toolbars']);
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 {
57 57
     if (!empty($blockFormats)) {
58 58
         $blockFormatStrings = array_map(
59
-            function ($tag, $label) {
59
+            function($tag, $label) {
60 60
                 return "${label}=${tag}";
61 61
             },
62 62
             $blockFormats,
Please login to merge, or discard this patch.
inc/twigReadingTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Flynt\Utils\TwigReadingTimeExtension;
6 6
 
7
-add_filter('get_twig', function ($twig) {
7
+add_filter('get_twig', function($twig) {
8 8
     $twig->addExtension(new TwigReadingTimeExtension());
9 9
     return $twig;
10 10
 });
Please login to merge, or discard this patch.
Components/GridPostsArchive/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 const POST_TYPE = 'post';
10 10
 const FILTER_BY_TAXONOMY = 'category';
11 11
 
12
-add_filter('Flynt/addComponentData?name=GridPostsArchive', function ($data) {
12
+add_filter('Flynt/addComponentData?name=GridPostsArchive', function($data) {
13 13
     $postType = POST_TYPE;
14 14
     $taxonomy = FILTER_BY_TAXONOMY;
15 15
     $terms = get_terms([
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     ]);
19 19
     $queriedObject = get_queried_object();
20 20
     if (count($terms) > 1) {
21
-        $data['terms'] = array_map(function ($term) use ($queriedObject) {
21
+        $data['terms'] = array_map(function($term) use ($queriedObject) {
22 22
             $timberTerm = new Term($term);
23 23
             if ($queriedObject) {
24 24
                 $timberTerm->isActive = $queriedObject->taxonomy === $term->taxonomy && $queriedObject->term_id === $term->term_id;
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $data['isHome'] = true;
38 38
         $data['title'] = $queriedObject->post_title ?? get_bloginfo('name');
39 39
     } else {
40
-        $data['title'] =  get_the_archive_title();
40
+        $data['title'] = get_the_archive_title();
41 41
         $data['description'] = get_the_archive_description();
42 42
     }
43 43
 
Please login to merge, or discard this patch.
Components/BlockPostHeader/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Flynt\Utils\Options;
6 6
 
7
-add_filter('Flynt/addComponentData?name=BlockPostHeader', function ($data) {
7
+add_filter('Flynt/addComponentData?name=BlockPostHeader', function($data) {
8 8
 
9 9
     return $data;
10 10
 });
Please login to merge, or discard this patch.
inc/acf.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 
4 4
 use Flynt\Utils\Options;
5 5
 
6
-add_filter('pre_http_request', function ($preempt, $args, $url) {
6
+add_filter('pre_http_request', function($preempt, $args, $url) {
7 7
     if (strpos($url, 'https://www.youtube.com/oembed') !== false || strpos($url, 'https://vimeo.com/api/oembed') !== false) {
8 8
         $response = wp_cache_get($url, 'oembedCache');
9 9
         if (!empty($response)) {
@@ -13,14 +13,14 @@  discard block
 block discarded – undo
13 13
     return false;
14 14
 }, 10, 3);
15 15
 
16
-add_filter('http_response', function ($response, $args, $url) {
16
+add_filter('http_response', function($response, $args, $url) {
17 17
     if (strpos($url, 'https://www.youtube.com/oembed') !== false || strpos($url, 'https://vimeo.com/api/oembed') !== false) {
18 18
         wp_cache_set($url, $response, 'oembedCache');
19 19
     }
20 20
     return $response;
21 21
 }, 10, 3);
22 22
 
23
-add_filter('acf/fields/google_map/api', function ($api) {
23
+add_filter('acf/fields/google_map/api', function($api) {
24 24
     $apiKey = Options::getGlobal('Acf', 'googleMapsApiKey');
25 25
     if ($apiKey) {
26 26
         $api['key'] = $apiKey;
Please login to merge, or discard this patch.
inc/options.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 function addOptionsToComponent($data, $componentName)
15 15
 {
16 16
     // get fields for this component
17
-    $options = array_reduce(array_keys(Options::OPTION_TYPES), function ($carry, $optionType) use ($componentName) {
17
+    $options = array_reduce(array_keys(Options::OPTION_TYPES), function($carry, $optionType) use ($componentName) {
18 18
         return array_merge($carry, Options::get($optionType, $componentName));
19 19
     }, []);
20 20
     // don't overwrite existing data
Please login to merge, or discard this patch.
lib/Utils/Options.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             static::$initialized = true;
34 34
         }
35 35
 
36
-        add_action('current_screen', function ($currentScreen) {
36
+        add_action('current_screen', function($currentScreen) {
37 37
             $currentScreenId = strtolower($currentScreen->id);
38 38
             foreach (static::OPTION_TYPES as $optionType => $option) {
39 39
                 $isTranslatable = $option['translatable'];
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                         101
59 59
                     );
60 60
                     // hide language selector in admin bar
61
-                    add_action('wp_before_admin_bar_render', function () {
61
+                    add_action('wp_before_admin_bar_render', function() {
62 62
                         $adminBar = $GLOBALS['wp_admin_bar'];
63 63
                         $adminBar->remove_menu('WPML_ALS');
64 64
                     });
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
             $optionNames = ((static::$registeredOptions[$optionType] ?? [])[$scope] ?? []);
179 179
             return array_combine(
180 180
                 $optionNames,
181
-                array_map(function ($optionName) use ($prefix, $isTranslatable) {
181
+                array_map(function($optionName) use ($prefix, $isTranslatable) {
182 182
                     $fieldKey = $prefix . $optionName;
183 183
                     return static::getOptionField($fieldKey, $isTranslatable);
184 184
                 }, $optionNames)
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 
260 260
     protected static function prefixFields($fields, $prefix)
261 261
     {
262
-        return array_map(function ($field) use ($prefix) {
262
+        return array_map(function($field) use ($prefix) {
263 263
             $field['name'] = $prefix . '_' . $field['name'];
264 264
             return $field;
265 265
         }, $fields);
Please login to merge, or discard this patch.