@@ -32,7 +32,7 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | public function templates($templates) |
| 34 | 34 | { |
| 35 | - return array_merge($templates, ['dummy-template' => 'DummyTemplate']); |
|
| 35 | + return array_merge($templates, [ 'dummy-template' => 'DummyTemplate' ]); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | public function wyswygToolbars() |
| 27 | 27 | { |
| 28 | 28 | return [ |
| 29 | - 'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']], |
|
| 29 | + 'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ], |
|
| 30 | 30 | ]; |
| 31 | 31 | } |
| 32 | 32 | } |
@@ -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 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | public function components() |
| 27 | 27 | { |
| 28 | - return []; |
|
| 28 | + return [ ]; |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | /** |
@@ -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 | } |
@@ -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 |
@@ -27,8 +27,8 @@ |
||
| 27 | 27 | { |
| 28 | 28 | parent::__construct(); |
| 29 | 29 | |
| 30 | - add_action('admin_init', [$this, 'addScreenAttributes']); |
|
| 31 | - add_action('admin_init', [$this, 'removeScreenAttributes']); |
|
| 30 | + add_action('admin_init', [ $this, 'addScreenAttributes' ]); |
|
| 31 | + add_action('admin_init', [ $this, 'removeScreenAttributes' ]); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | |
| 46 | 46 | public function components() : array |
| 47 | 47 | { |
| 48 | - return []; |
|
| 48 | + return [ ]; |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | public function addScreenAttributes() : void |