Completed
Pull Request — master (#19)
by Gorka
08:44 queued 06:30
created
spec/LIN3S/WPFoundation/Twig/TagManagerTwigSpec.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
36 36
 '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
37 37
 })(window,document,'script','dataLayer','GTM-XXXXXX');</script>
38
-EOT
38
+eot
39 39
         );
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Twig/TagManagerTwig.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
53 53
 '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
54 54
 })(window,document,'script','dataLayer','$tagManagerId');</script>
55
-EOT;
55
+eot;
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
      */
29 29
     public function __construct()
30 30
     {
31
-        add_action('twig_apply_filters', function (\Twig_Environment $twig) {
32
-            $twig->addFunction(new \Twig_SimpleFunction('tagManager', [$this, 'tagManagerFunction']));
31
+        add_action('twig_apply_filters', function(\Twig_Environment $twig) {
32
+            $twig->addFunction(new \Twig_SimpleFunction('tagManager', [ $this, 'tagManagerFunction' ]));
33 33
 
34 34
             return $twig;
35 35
         });
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Mailer/Mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function __construct()
36 36
     {
37
-        add_action('phpmailer_init', [$this, 'mailer']);
37
+        add_action('phpmailer_init', [ $this, 'mailer' ]);
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Menus/Menus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct()
26 26
     {
27
-        add_action('init', [$this, 'menus']);
27
+        add_action('init', [ $this, 'menus' ]);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Widgets/Widget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct($id, $name, $description)
29 29
     {
30
-        parent::__construct($id, $name, ['description' => $description]);
30
+        parent::__construct($id, $name, [ 'description' => $description ]);
31 31
 
32
-        add_action('widgets_init', [$this, 'register']);
32
+        add_action('widgets_init', [ $this, 'register' ]);
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Widgets/Areas/WidgetArea.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct()
26 26
     {
27
-        add_action('widgets_init', [$this, 'widgetArea']);
27
+        add_action('widgets_init', [ $this, 'widgetArea' ]);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/PostTypes/Fields/Templates/PageFields.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,6 +99,6 @@
 block discarded – undo
99 99
 <h1 style="text-align: center;">
100 100
     PLEASE ADD <strong>PAGE TITLE</strong> AND SELECT A TEMPLATE IN THE <strong>TEMPLATE SELECTOR</strong>
101 101
 </h1>
102
-EOF;
102
+eof;
103 103
     }
104 104
 }
Please login to merge, or discard this 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/RewriteRules/RewriteRules.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
     {
27 27
         $this->rewriteRules();
28 28
         $this->rewriteTags();
29
-        add_action('template_include', [$this, 'templateInclude']);
29
+        add_action('template_include', [ $this, 'templateInclude' ]);
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Ajax/Ajax.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function __construct()
33 33
     {
34
-        add_action('wp_ajax_nopriv_' . $this->action, [$this, 'ajax']);
35
-        add_action('wp_ajax_' . $this->action, [$this, 'ajax']);
34
+        add_action('wp_ajax_nopriv_' . $this->action, [ $this, 'ajax' ]);
35
+        add_action('wp_ajax_' . $this->action, [ $this, 'ajax' ]);
36 36
     }
37 37
 }
Please login to merge, or discard this patch.