Completed
Push — constructionplanless ( f41850...ef3709 )
by Dominik
01:29
created
inc/fieldGroups/pageComponents.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
 use ACFComposer\ACFComposer;
4 4
 
5
-add_action('Flynt/afterRegisterComponents', function () {
5
+add_action('Flynt/afterRegisterComponents', function() {
6 6
     ACFComposer::registerFieldGroup([
7 7
         'name' => 'pageComponents',
8 8
         'title' => 'Page Components',
Please login to merge, or discard this patch.
inc/Core/Flynt.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     return is_null($output) ? '' : $output;
45 45
 }
46 46
 
47
-add_filter('Flynt/renderComponent', function ($output, $componentName, $data) {
47
+add_filter('Flynt/renderComponent', function($output, $componentName, $data) {
48 48
     return apply_filters(
49 49
         "Flynt/renderComponent?name={$componentName}",
50 50
         $output,
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     );
54 54
 }, 10, 3);
55 55
 
56
-add_filter('Flynt/addComponentData', function ($data, $componentName) {
56
+add_filter('Flynt/addComponentData', function($data, $componentName) {
57 57
     return apply_filters(
58 58
         "Flynt/addComponentData?name={$componentName}",
59 59
         $data,
Please login to merge, or discard this patch.