@@ -24,6 +24,6 @@ |
||
| 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 | } |
@@ -27,9 +27,9 @@ |
||
| 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 | /** |
@@ -30,6 +30,6 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public function components() |
| 32 | 32 | { |
| 33 | - return []; |
|
| 33 | + return [ ]; |
|
| 34 | 34 | } |
| 35 | 35 | } |
@@ -27,7 +27,7 @@ |
||
| 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 | /** |
@@ -29,8 +29,8 @@ discard block |
||
| 29 | 29 | $this->acf(); |
| 30 | 30 | $this->classes(); |
| 31 | 31 | add_theme_support('post-thumbnails'); |
| 32 | - add_filter('timber_context', [$this, 'context']); |
|
| 33 | - add_filter('template_selector_available', [$this, 'templates']); |
|
| 32 | + add_filter('timber_context', [ $this, 'context' ]); |
|
| 33 | + add_filter('template_selector_available', [ $this, 'templates' ]); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | protected function acf() |
| 40 | 40 | { |
| 41 | 41 | new Wysiwyg([ |
| 42 | - 'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']] |
|
| 42 | + 'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ] |
|
| 43 | 43 | ]); |
| 44 | 44 | } |
| 45 | 45 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 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 |
||
| 33 | 33 | |
| 34 | 34 | function its_toolbars() |
| 35 | 35 | { |
| 36 | - $this->toolbars([])->shouldBeArray(); |
|
| 36 | + $this->toolbars([ ])->shouldBeArray(); |
|
| 37 | 37 | } |
| 38 | 38 | } |
@@ -30,6 +30,6 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public function components() |
| 32 | 32 | { |
| 33 | - return []; |
|
| 33 | + return [ ]; |
|
| 34 | 34 | } |
| 35 | 35 | } |
@@ -30,6 +30,6 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public function components() |
| 32 | 32 | { |
| 33 | - return []; |
|
| 33 | + return [ ]; |
|
| 34 | 34 | } |
| 35 | 35 | } |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | $postId = absint($updatePostId); |
| 39 | 39 | } |
| 40 | 40 | if (false === isset($postId) || $this->name === get_post_meta($postId, '_wp_page_template', true)) { |
| 41 | - add_action('admin_init', [$this, 'removeScreenAttributes']); |
|
| 41 | + add_action('admin_init', [ $this, 'removeScreenAttributes' ]); |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | |