Completed
Pull Request — master (#22)
by
unknown
25:20
created
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/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.
fixtures/LIN3S/WPFoundation/PageFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
      */
31 31
     public function components()
32 32
     {
33
-        return [];
33
+        return [ ];
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/CustomPostTypeFields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
      */
31 31
     public function components()
32 32
     {
33
-        return [];
33
+        return [ ];
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
fixtures/LIN3S/WPFoundation/Fields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function components()
27 27
     {
28
-        return [];
28
+        return [ ];
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.