Completed
Pull Request — master (#22)
by
unknown
25:01
created
src/LIN3S/WPFoundation/PostTypes/Fields/Fields.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function __construct(
45 45
         $name = '',
46
-        $components = [],
46
+        $components = [ ],
47 47
         $connector = null
48 48
     )
49 49
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     public function connector()
94 94
     {
95 95
         if ($this->connector === null) {
96
-            return [];
96
+            return [ ];
97 97
         }
98 98
 
99 99
         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
@@ -45,8 +45,7 @@
 block discarded – undo
45 45
         $name = '',
46 46
         $components = [],
47 47
         $connector = null
48
-    )
49
-    {
48
+    ) {
50 49
         if ($connector !== null && !$connector instanceof FieldConnector) {
51 50
             throw new \Exception('Connector must implement FieldConnector');
52 51
         }
Please login to merge, or discard this patch.