Completed
Push — master ( 5b2de4...b96792 )
by Beñat
03:13
created
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.