Completed
Pull Request — master (#19)
by Gorka
08:44 queued 06:30
created
src/LIN3S/WPFoundation/Configuration/Assets/Assets.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@  discard block
 block discarded – undo
26 26
     public function __construct()
27 27
     {
28 28
         if (true === WP_DEBUG) {
29
-            add_action('wp_enqueue_scripts', [$this, 'developmentAssets']);
29
+            add_action('wp_enqueue_scripts', [ $this, 'developmentAssets' ]);
30 30
         } else {
31
-            add_action('wp_enqueue_scripts', [$this, 'productionAssets']);
31
+            add_action('wp_enqueue_scripts', [ $this, 'productionAssets' ]);
32 32
         }
33
-        add_action('admin_enqueue_scripts', [$this, 'adminAssets']);
33
+        add_action('admin_enqueue_scripts', [ $this, 'adminAssets' ]);
34 34
 
35 35
         // @deprecated since version 1.5, will be removed in 2.0. Implement productionAssets and developmentAssets instead.
36
-        add_action('wp_enqueue_scripts', [$this, 'assets']);
36
+        add_action('wp_enqueue_scripts', [ $this, 'assets' ]);
37 37
     }
38 38
 
39 39
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     protected function addScript(
74 74
         $name,
75 75
         $from = AssetsInterface::ASSETS_JS,
76
-        array $dependencies = ['jquery'],
76
+        array $dependencies = [ 'jquery' ],
77 77
         $version = '1.0.0',
78 78
         $inFooter = true,
79 79
         $ajaxUrl = null
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     protected function addStylesheet(
103 103
         $name,
104 104
         $from = AssetsInterface::CSS,
105
-        array $dependencies = [],
105
+        array $dependencies = [ ],
106 106
         $version = '1.0.0',
107 107
         $media = 'all'
108 108
     ) {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     protected function registerAjaxUrls($name, $ajaxUrl)
135 135
     {
136 136
         if (false === is_array($ajaxUrl)) {
137
-            $ajaxUrl = [$ajaxUrl];
137
+            $ajaxUrl = [ $ajaxUrl ];
138 138
         }
139 139
         foreach ($ajaxUrl as $url) {
140 140
             wp_localize_script($name, $url, [
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.
src/LIN3S/WPFoundation/Twig/TranslationTwig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
      */
30 30
     public function __construct()
31 31
     {
32
-        add_action('twig_apply_filters', function (\Twig_Environment $twig) {
33
-            $twig->addFunction(new \Twig_SimpleFunction('trans', function ($key) {
32
+        add_action('twig_apply_filters', function(\Twig_Environment $twig) {
33
+            $twig->addFunction(new \Twig_SimpleFunction('trans', function($key) {
34 34
                 return Translations::trans($key);
35 35
             }));
36 36
 
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/PostTypes/PostType.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function __construct()
28 28
     {
29
-        add_action('init', [$this, 'postType']);
30
-        add_action('init', [$this, 'taxonomyType']);
31
-        add_action('init', [$this, 'fields'], 20);
32
-        add_action('init', [$this, 'rewriteRules'], 20);
29
+        add_action('init', [ $this, 'postType' ]);
30
+        add_action('init', [ $this, 'taxonomyType' ]);
31
+        add_action('init', [ $this, 'fields' ], 20);
32
+        add_action('init', [ $this, 'rewriteRules' ], 20);
33 33
 
34
-        add_filter('post_type_link', [$this, 'permalink'], 1, 2);
35
-        add_filter('term_link', [$this, 'taxonomyPermalink'], 1, 2);
34
+        add_filter('post_type_link', [ $this, 'permalink' ], 1, 2);
35
+        add_filter('term_link', [ $this, 'taxonomyPermalink' ], 1, 2);
36 36
     }
37 37
 
38 38
     /**
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     {
65 65
         if (is_array($postTypes)) {
66 66
             foreach ($postTypes as $key => $postType) {
67
-                $postTypes[$key] = static::singleSerialize($postType);
67
+                $postTypes[ $key ] = static::singleSerialize($postType);
68 68
             }
69 69
 
70 70
             return $postTypes;
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Login/Login.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct()
26 26
     {
27
-        add_filter('login_errors', [$this, 'errors']);
28
-        add_action('login_enqueue_scripts', [$this, 'logo']);
29
-        add_filter('login_message', [$this, 'message']);
30
-        add_filter('login_headertitle', [$this, 'title']);
31
-        add_filter('login_headerurl', [$this, 'url']);
27
+        add_filter('login_errors', [ $this, 'errors' ]);
28
+        add_action('login_enqueue_scripts', [ $this, 'logo' ]);
29
+        add_filter('login_message', [ $this, 'message' ]);
30
+        add_filter('login_headertitle', [ $this, 'title' ]);
31
+        add_filter('login_headerurl', [ $this, 'url' ]);
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         margin-top: 0;
58 58
     }
59 59
 </style>
60
-EOL;
60
+eol;
61 61
     }
62 62
 
63 63
     /**
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Acf/AcfSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\LIN3S\WPFoundation\Configuration\Acf;
13 13
 
14
-use fixtures\LIN3S\WPFoundation\Acf;
15 14
 use LIN3S\WPFoundation\Configuration\Acf\Acf as BaseAcf;
16 15
 use LIN3S\WPFoundation\Configuration\Acf\AcfInterface;
17 16
 use PhpSpec\ObjectBehavior;
17
+use fixtures\LIN3S\WPFoundation\Acf;
18 18
 
19 19
 /**
20 20
  * Custom ACF Wysiwyg class adding some useful features.
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Login/LoginSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\LIN3S\WPFoundation\Configuration\Login;
13 13
 
14
-use fixtures\LIN3S\WPFoundation\Login;
15 14
 use LIN3S\WPFoundation\Configuration\Login\Login as BaseLogin;
16 15
 use LIN3S\WPFoundation\Configuration\Login\LoginInterface;
17 16
 use PhpSpec\ObjectBehavior;
17
+use fixtures\LIN3S\WPFoundation\Login;
18 18
 
19 19
 /**
20 20
  * Spec of Login class.
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/Acf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function wyswygToolbars()
27 27
     {
28 28
         return [
29
-            'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']],
29
+            'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ],
30 30
         ];
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Acf/Acf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function __construct()
27 27
     {
28 28
         $customToolbars = $this->wyswygToolbars();
29
-        add_filter('acf/fields/wysiwyg/toolbars', function (array $toolbars) use ($customToolbars) {
29
+        add_filter('acf/fields/wysiwyg/toolbars', function(array $toolbars) use ($customToolbars) {
30 30
             return array_merge($toolbars, $customToolbars);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.