@@ -22,7 +22,7 @@ |
||
| 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() |
@@ -26,11 +26,11 @@ |
||
| 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 | /** |
@@ -43,7 +43,7 @@ discard block |
||
| 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 |
||
| 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(); |
@@ -29,8 +29,8 @@ |
||
| 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 | /** |