Completed
Pull Request — master (#269)
by
unknown
04:36 queued 01:53
created
Components/SliderMedia/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
 use Flynt\Features\Components\Component;
6 6
 use Flynt\Utils\Oembed;
7 7
 
8
-add_filter('Flynt/addComponentData?name=SliderMedia', function ($data) {
9
-    $data['mediaSlides'] = array_map(function ($item) {
8
+add_filter('Flynt/addComponentData?name=SliderMedia', function($data) {
9
+    $data['mediaSlides'] = array_map(function($item) {
10 10
         if ($item['mediaType'] == 'oembed') {
11 11
             $item['image'] = $item['posterImage'];
12 12
             $item['oembedLazyLoad'] = Oembed::setSrcAsDataAttribute(
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     return $data;
23 23
 });
24 24
 
25
-add_action('wp_enqueue_scripts', function () {
25
+add_action('wp_enqueue_scripts', function() {
26 26
     Component::enqueueAssets('SliderMedia', [
27 27
         [
28 28
             'name' => 'slick-carousel',
Please login to merge, or discard this patch.
Features/HideProtectedPosts/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Flynt\Features\HideProtectedPosts;
4 4
 
5
-add_action('pre_get_posts', function ($query) {
5
+add_action('pre_get_posts', function($query) {
6 6
     if (!$query->is_singular() && !is_admin()) {
7 7
         $query->set('has_password', false);
8 8
     }
Please login to merge, or discard this patch.
lib/Utils/Log.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@  discard block
 block discarded – undo
22 22
     public static function consoleDebug($data, $postpone = true, $title = 'PHP', $logType = 'log')
23 23
     {
24 24
         if (in_array($logType, ['log', 'error', 'trace'])) {
25
-            $title .= '(' . self::getCallerFile(2) .'):';
25
+            $title .= '(' . self::getCallerFile(2) . '):';
26 26
             $type = gettype($data);
27 27
             $output = json_encode($data);
28
-            $result =  "<script>console.{$logType}('{$title}', '({$type})', {$output});</script>\n";
28
+            $result = "<script>console.{$logType}('{$title}', '({$type})', {$output});</script>\n";
29 29
             self::echoDebug($result, $postpone);
30 30
         }
31 31
     }
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     protected static function echoDebug($data, $postpone)
47 47
     {
48 48
         if ($postpone) {
49
-            add_action('wp_footer', function () use ($data) {
49
+            add_action('wp_footer', function() use ($data) {
50 50
                 echo $data;
51 51
             }, 30);
52 52
         } else {
Please login to merge, or discard this patch.
lib/Utils/ArrayHelpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
      */
35 35
     public static function indexedValuesToAssocKeys(array $array)
36 36
     {
37
-        $values = array_map(function ($value) {
37
+        $values = array_map(function($value) {
38 38
             return is_array($value) ? $value : [];
39 39
         }, $array);
40 40
 
41
-        $keys = array_map(function ($key) use ($array) {
41
+        $keys = array_map(function($key) use ($array) {
42 42
             return is_int($key) ? $array[$key] : $key;
43 43
         }, array_keys($array));
44 44
 
Please login to merge, or discard this patch.
Features/TimberLoader/functions.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
12 12
 
13 13
 // Render Component with Timber (Twig)
14
-add_filter('Flynt/renderComponent', function ($output, $componentName, $componentData, $areaHtml) {
14
+add_filter('Flynt/renderComponent', function($output, $componentName, $componentData, $areaHtml) {
15 15
     // get index file
16 16
     $componentManager = Flynt\ComponentManager::getInstance();
17 17
     $filePath = $componentManager->getComponentFilePath($componentName, 'index.twig');
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
         return $output;
22 22
     }
23 23
 
24
-    $addArea = function ($twig) use ($areaHtml) {
24
+    $addArea = function($twig) use ($areaHtml) {
25 25
 
26
-        $twig->addFunction(new Twig_SimpleFunction('area', function ($areaName) use ($areaHtml) {
26
+        $twig->addFunction(new Twig_SimpleFunction('area', function($areaName) use ($areaHtml) {
27 27
             if (array_key_exists($areaName, $areaHtml)) {
28 28
                 return $areaHtml[$areaName];
29 29
             }
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     add_filter('get_twig', $addArea);
36 36
 
37
-    $returnTimberPaths = function ($paths) use ($filePath) {
37
+    $returnTimberPaths = function($paths) use ($filePath) {
38 38
         array_unshift($paths, dirname($filePath));
39 39
         return $paths;
40 40
     };
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 }, 10, 4);
52 52
 
53 53
 // Convert ACF Images to Timber Images
54
-add_filter('acf/format_value/type=image', function ($value) {
54
+add_filter('acf/format_value/type=image', function($value) {
55 55
     if (!empty($value)) {
56 56
         $value = new Image($value);
57 57
     }
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 }, 100);
60 60
 
61 61
 // Convert ACF Gallery Images to Timber Images
62
-add_filter('acf/format_value/type=gallery', function ($value) {
62
+add_filter('acf/format_value/type=gallery', function($value) {
63 63
     if (!empty($value)) {
64
-        $value = array_map(function ($image) {
64
+        $value = array_map(function($image) {
65 65
             return new Image($image);
66 66
         }, $value);
67 67
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 }, 100);
70 70
 
71 71
 // Convert ACF Field of type post_object to a Timber\Post and add all ACF Fields of that Post
72
-add_filter('acf/format_value/type=post_object', function ($value) {
72
+add_filter('acf/format_value/type=post_object', function($value) {
73 73
     if (is_array($value)) {
74 74
         $value = array_map(NS . 'convertToTimberPost', $value);
75 75
     } else {
Please login to merge, or discard this patch.