Completed
Pull Request — master (#22)
by
unknown
25:20
created
src/LIN3S/WPFoundation/PostTypes/Fields/Components/FieldComponent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         if (method_exists(static::class, 'definition')) {
30 30
             $definition = static::definition($aName);
31
-            $definition['location'] = $aConnector;
31
+            $definition[ 'location' ] = $aConnector;
32 32
             acf_add_local_field_group($definition);
33 33
         } else {
34 34
             //@deprecated Will be removed in 2.0, and this class will implement FieldComponentInterface
Please login to merge, or discard this patch.
spec/LIN3S/WPFoundation/Configuration/Theme/ThemeSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@
 block discarded – undo
42 42
 
43 43
     function it_should_return_templates()
44 44
     {
45
-        $this->templates(['my-template' => 'MyTemplate'])->shouldReturn([
45
+        $this->templates([ 'my-template' => 'MyTemplate' ])->shouldReturn([
46 46
             'my-template' => 'MyTemplate', 'dummy-template' => 'DummyTemplate',
47 47
         ]);
48 48
     }
49 49
 
50 50
     function it_should_return_context()
51 51
     {
52
-        $this->context(['heder-menu' => 'Header Menu'])->shouldReturn(['heder-menu' => 'Header Menu']);
52
+        $this->context([ 'heder-menu' => 'Header Menu' ])->shouldReturn([ 'heder-menu' => 'Header Menu' ]);
53 53
     }
54 54
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/PostTypes/PostType.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,18 +30,18 @@  discard block
 block discarded – undo
30 30
      * @param string $name
31 31
      * @param array $options
32 32
      */
33
-    public function __construct($name = null, $options = [])
33
+    public function __construct($name = null, $options = [ ])
34 34
     {
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.
src/LIN3S/WPFoundation/PostTypes/Taxonomy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $this->postType = $postType;
23 23
         $this->options = $options;
24 24
 
25
-        add_action('init', [$this, 'initTaxonomy']);
25
+        add_action('init', [ $this, 'initTaxonomy' ]);
26 26
     }
27 27
 
28 28
     public function initTaxonomy()
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Menus/Menus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
      *
27 27
      * @param array $menus
28 28
      */
29
-    public function __construct($menus = [])
29
+    public function __construct($menus = [ ])
30 30
     {
31 31
         $this->menus = $menus;
32 32
 
33
-        add_action('init', [$this, 'menus']);
33
+        add_action('init', [ $this, 'menus' ]);
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
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.
src/LIN3S/WPFoundation/PostTypes/Fields/CustomPostTypeFields.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
         parent::__construct($this->name);
31 31
 
32
-        add_action('admin_init', [$this, 'addScreenAttributes']);
33
-        add_action('admin_init', [$this, 'removeScreenAttributes']);
32
+        add_action('admin_init', [ $this, 'addScreenAttributes' ]);
33
+        add_action('admin_init', [ $this, 'removeScreenAttributes' ]);
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.