Passed
Pull Request — master (#177)
by Dominik
05:03
created
Components/ListComponents/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@  discard block
 block discarded – undo
8 8
 use Flynt\Utils\Asset;
9 9
 use Parsedown;
10 10
 
11
-add_filter('Flynt/addComponentData?name=ListComponents', function ($data) {
11
+add_filter('Flynt/addComponentData?name=ListComponents', function($data) {
12 12
     if (!empty($data['componentBlocks'])) {
13 13
         $templatePaths = [
14 14
             'dir' => trailingslashit(get_template_directory()),
15 15
             'uri' => trailingslashit(get_template_directory_uri()),
16 16
         ];
17
-        $data['componentBlocks'] = array_map(function ($block) use ($templatePaths) {
17
+        $data['componentBlocks'] = array_map(function($block) use ($templatePaths) {
18 18
             $block['component'] = substr($block['component'], strpos($block['component'], 'Components/'));
19 19
 
20 20
             $imagePath = $templatePaths['dir'] . $block['component'] . 'screenshot.png';
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     return $data;
46 46
 });
47 47
 
48
-add_filter('acf/load_field/name=component', function ($field) {
48
+add_filter('acf/load_field/name=component', function($field) {
49 49
     $componentManager = ComponentManager::getInstance();
50 50
     $field['choices'] = array_flip($componentManager->getAll());
51 51
     return $field;
Please login to merge, or discard this patch.
Components/FeatureAdminComponentScreenshots/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@  discard block
 block discarded – undo
4 4
 use Flynt\ComponentManager;
5 5
 use Flynt\Utils\Asset;
6 6
 
7
-add_action('admin_enqueue_scripts', function () {
7
+add_action('admin_enqueue_scripts', function() {
8 8
     $componentManager = ComponentManager::getInstance();
9 9
     $templateDirectory = get_template_directory();
10 10
     $data = [
11 11
         'templateDirectoryUri' => get_template_directory_uri(),
12
-        'components' => array_map(function ($componentPath) use ($templateDirectory) {
12
+        'components' => array_map(function($componentPath) use ($templateDirectory) {
13 13
             return str_replace($templateDirectory, '', $componentPath);
14 14
         }, $componentManager->getAll()),
15 15
     ];
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 if (class_exists('acf')) {
20 20
     if (is_admin()) {
21 21
         // add image to the flexible content component name
22
-        add_filter('acf/fields/flexible_content/layout_title', function ($title, $field, $layout, $i) {
22
+        add_filter('acf/fields/flexible_content/layout_title', function($title, $field, $layout, $i) {
23 23
             $componentManager = ComponentManager::getInstance();
24 24
             $componentName = ucfirst($layout['name']);
25 25
             $componentPathFull = $componentManager->getComponentDirPath($componentName);
Please login to merge, or discard this patch.