Completed
Pull Request — master (#12)
by
unknown
03:05
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/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.
spec/LIN3S/WPFoundation/Configuration/Login/LoginSpec.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +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;
18
-use Prophecy\Argument;
17
+use fixtures\LIN3S\WPFoundation\Login;
19 18
 
20 19
 /**
21 20
  * Spec of Login class.
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
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         width: 179px;
54 54
     };
55 55
 </style>;
56
-EOL;
56
+eol;
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Theme/Theme.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->classes();
31 31
         $this->templateSelector();
32 32
         add_theme_support('post-thumbnails');
33
-        add_filter('timber_context', [$this, 'context']);
33
+        add_filter('timber_context', [ $this, 'context' ]);
34 34
     }
35 35
 
36 36
     /**
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     protected function acf()
40 40
     {
41 41
         new Wysiwyg([
42
-            'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']],
42
+            'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ],
43 43
         ]);
44 44
     }
45 45
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
     private function templateSelector()
50 50
     {
51 51
         $self = $this;
52
-        add_filter('theme_page_templates', function () use ($self) {
53
-            return $self->templates([]);
52
+        add_filter('theme_page_templates', function() use ($self) {
53
+            return $self->templates([ ]);
54 54
         });
55 55
     }
56 56
 }
Please login to merge, or discard this patch.