Completed
Pull Request — master (#20)
by Gorka
01:58
created
src/LIN3S/WPFoundation/PostTypes/Fields/Fields.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function __construct(
55 55
         $postType = null,
56
-        $components = [],
56
+        $components = [ ],
57 57
         $connector = null,
58
-        $screenAttributesToAdd = [],
59
-        $screenAttributesToRemove = []
58
+        $screenAttributesToAdd = [ ],
59
+        $screenAttributesToRemove = [ ]
60 60
     )
61 61
     {
62 62
         if ($connector !== null && $connector instanceof FieldConnector) {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     public function connector()
136 136
     {
137 137
         if ($this->connector === null) {
138
-            return [];
138
+            return [ ];
139 139
         }
140 140
 
141 141
         return $this->connector->connector();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
         $connector = null,
58 58
         $screenAttributesToAdd = [],
59 59
         $screenAttributesToRemove = []
60
-    )
61
-    {
60
+    ) {
62 61
         if ($connector !== null && $connector instanceof FieldConnector) {
63 62
             throw new \Exception('Connector must implement FieldConnector');
64 63
         }
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
@@ -35,13 +35,13 @@  discard block
 block discarded – undo
35 35
         $this->name = $name;
36 36
         $this->options = $options;
37 37
 
38
-        add_action('init', [$this, 'postType']);
39
-        add_action('init', [$this, 'taxonomyType']);
40
-        add_action('init', [$this, 'fields'], 20);
41
-        add_action('init', [$this, 'rewriteRules'], 20);
38
+        add_action('init', [ $this, 'postType' ]);
39
+        add_action('init', [ $this, 'taxonomyType' ]);
40
+        add_action('init', [ $this, 'fields' ], 20);
41
+        add_action('init', [ $this, 'rewriteRules' ], 20);
42 42
 
43
-        add_filter('post_type_link', [$this, 'permalink'], 1, 2);
44
-        add_filter('term_link', [$this, 'taxonomyPermalink'], 1, 2);
43
+        add_filter('post_type_link', [ $this, 'permalink' ], 1, 2);
44
+        add_filter('term_link', [ $this, 'taxonomyPermalink' ], 1, 2);
45 45
     }
46 46
 
47 47
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         if (is_array($postTypes)) {
75 75
             foreach ($postTypes as $key => $postType) {
76
-                $postTypes[$key] = static::singleSerialize($postType);
76
+                $postTypes[ $key ] = static::singleSerialize($postType);
77 77
             }
78 78
 
79 79
             return $postTypes;
Please login to merge, or discard this patch.