@@ -42,13 +42,13 @@ |
||
| 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 | } |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | * Constructor. |
| 43 | 43 | */ |
| 44 | 44 | public function __construct( |
| 45 | - $components = [], |
|
| 45 | + $components = [ ], |
|
| 46 | 46 | $connector = null |
| 47 | 47 | ) |
| 48 | 48 | { |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | public function connector() |
| 92 | 92 | { |
| 93 | 93 | if ($this->connector === null) { |
| 94 | - return []; |
|
| 94 | + return [ ]; |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | return $this->connector->connector(); |
@@ -30,18 +30,18 @@ discard block |
||
| 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 |
||
| 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; |
@@ -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() |