Completed
Push — master ( f5cd5b...d3cd2b )
by
unknown
02:36
created
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.
spec/LIN3S/WPFoundation/Configuration/Acf/WysiwygSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 {
24 24
     function let()
25 25
     {
26
-        $this->beConstructedWith([]);
26
+        $this->beConstructedWith([ ]);
27 27
     }
28 28
 
29 29
     function it_is_initializable()
@@ -33,6 +33,6 @@  discard block
 block discarded – undo
33 33
     
34 34
     function its_toolbars()
35 35
     {
36
-        $this->toolbars([])->shouldBeArray();
36
+        $this->toolbars([ ])->shouldBeArray();
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Mailer/Mailer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function __construct()
36 36
     {
37
-        add_action('phpmailer_init', [$this, 'mailer']);
37
+        add_action('phpmailer_init', [ $this, 'mailer' ]);
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Menus/Menus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct()
26 26
     {
27
-        add_action('init', [$this, 'menus']);
27
+        add_action('init', [ $this, 'menus' ]);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Configuration/Acf/Wysiwyg.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function __construct($toolbars)
28 28
     {
29 29
         $this->toolbars = $toolbars;
30
-        add_filter('acf/fields/wysiwyg/toolbars', [$this, 'toolbars']);
30
+        add_filter('acf/fields/wysiwyg/toolbars', [ $this, 'toolbars' ]);
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Widgets/Widget.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct($id, $name, $description)
29 29
     {
30
-        parent::__construct($id, $name, ['description' => $description]);
30
+        parent::__construct($id, $name, [ 'description' => $description ]);
31 31
 
32
-        add_action('widgets_init', [$this, 'register']);
32
+        add_action('widgets_init', [ $this, 'register' ]);
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/Widgets/Areas/WidgetArea.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct()
26 26
     {
27
-        add_action('widgets_init', [$this, 'widgetArea']);
27
+        add_action('widgets_init', [ $this, 'widgetArea' ]);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/LIN3S/WPFoundation/PostTypes/Fields/Fields.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
      */
31 31
     public function components()
32 32
     {
33
-        return [];
33
+        return [ ];
34 34
     }
35 35
 }
Please login to merge, or discard this patch.
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(get_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.