Completed
Push — master ( a2a0a6...89c3f6 )
by Beñat
02:45
created
src/LIN3S/WPFoundation/PostTypes/Fields/Templates/PageFields.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
         } elseif (isset($updatePostId)) {
38 38
             $postId = absint($updatePostId);
39 39
         } else {
40
-            add_action('add_meta_boxes', [$this, 'addMetaBox']);
40
+            add_action('add_meta_boxes', [ $this, 'addMetaBox' ]);
41 41
         }
42 42
         if (false === isset($postId) || $this->name === get_post_meta($postId, '_wp_page_template', true)) {
43
-            add_action('admin_init', [$this, 'addScreenAttributes']);
44
-            add_action('admin_init', [$this, 'removeScreenAttributes']);
43
+            add_action('admin_init', [ $this, 'addScreenAttributes' ]);
44
+            add_action('admin_init', [ $this, 'removeScreenAttributes' ]);
45 45
         }
46 46
     }
47 47
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         add_meta_box(
85 85
             'lin3s-id-default-meta-box',
86 86
             'LIN3S INFO',
87
-            [$this, 'metaBox'],
87
+            [ $this, 'metaBox' ],
88 88
             'page'
89 89
         );
90 90
     }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/PostTypes/Fields/CustomPostTypeFields.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
     {
28 28
         parent::__construct();
29 29
 
30
-        add_action('admin_init', [$this, 'addScreenAttributes']);
31
-        add_action('admin_init', [$this, 'removeScreenAttributes']);
30
+        add_action('admin_init', [ $this, 'addScreenAttributes' ]);
31
+        add_action('admin_init', [ $this, 'removeScreenAttributes' ]);
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.