@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | public function components() |
27 | 27 | { |
28 | - return []; |
|
28 | + return [ ]; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $this->templateSelector(); |
29 | 29 | $this->xmlrpc(); |
30 | 30 | add_theme_support('post-thumbnails'); |
31 | - add_filter('timber_context', [$this, 'context']); |
|
31 | + add_filter('timber_context', [ $this, 'context' ]); |
|
32 | 32 | |
33 | 33 | // @deprecated since version 1.6, will be removed in 2.0. Extend the ACF class in your project and instantiate |
34 | 34 | // inside your project Theme. |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | private function templateSelector() |
42 | 42 | { |
43 | 43 | $self = $this; |
44 | - add_filter('theme_page_templates', function () use ($self) { |
|
45 | - return $self->templates([]); |
|
44 | + add_filter('theme_page_templates', function() use ($self) { |
|
45 | + return $self->templates([ ]); |
|
46 | 46 | }); |
47 | 47 | } |
48 | 48 | |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | protected function acf() |
65 | 65 | { |
66 | 66 | $customToolbars = [ |
67 | - 'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']], |
|
67 | + 'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ], |
|
68 | 68 | ]; |
69 | 69 | |
70 | - add_filter('acf/fields/wysiwyg/toolbars', function (array $toolbars) use ($customToolbars) { |
|
70 | + add_filter('acf/fields/wysiwyg/toolbars', function(array $toolbars) use ($customToolbars) { |
|
71 | 71 | return array_merge($toolbars, $customToolbars); |
72 | 72 | }); |
73 | 73 | } |
@@ -28,7 +28,7 @@ |
||
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 |
@@ -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 | } |
@@ -53,10 +53,10 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function __construct( |
55 | 55 | $postType = null, |
56 | - $components = [], |
|
56 | + $components = [ ], |
|
57 | 57 | $connector = null, |
58 | - $screenAttributesToAdd = [], |
|
59 | - $screenAttributesToRemove = [] |
|
58 | + $screenAttributesToAdd = [ ], |
|
59 | + $screenAttributesToRemove = [ ] |
|
60 | 60 | ) |
61 | 61 | { |
62 | 62 | if ($connector !== null && $connector instanceof FieldConnector) { |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | public function connector() |
136 | 136 | { |
137 | 137 | if ($this->connector === null) { |
138 | - return []; |
|
138 | + return [ ]; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | return $this->connector->connector(); |
@@ -57,8 +57,7 @@ |
||
57 | 57 | $connector = null, |
58 | 58 | $screenAttributesToAdd = [], |
59 | 59 | $screenAttributesToRemove = [] |
60 | - ) |
|
61 | - { |
|
60 | + ) { |
|
62 | 61 | if ($connector !== null && $connector instanceof FieldConnector) { |
63 | 62 | throw new \Exception('Connector must implement FieldConnector'); |
64 | 63 | } |
@@ -35,13 +35,13 @@ discard block |
||
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; |