@@ -29,8 +29,8 @@ |
||
29 | 29 | */ |
30 | 30 | public function __construct() |
31 | 31 | { |
32 | - add_action('twig_apply_filters', function (\Twig_Environment $twig) { |
|
33 | - $twig->addFunction(new \Twig_SimpleFunction('trans', function ($key) { |
|
32 | + add_action('twig_apply_filters', function(\Twig_Environment $twig) { |
|
33 | + $twig->addFunction(new \Twig_SimpleFunction('trans', function($key) { |
|
34 | 34 | return Translations::trans($key); |
35 | 35 | })); |
36 | 36 |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function __construct() |
28 | 28 | { |
29 | - add_action('init', [$this, 'postType']); |
|
30 | - add_action('init', [$this, 'taxonomyType']); |
|
31 | - add_action('init', [$this, 'fields'], 20); |
|
32 | - add_action('init', [$this, 'rewriteRules'], 20); |
|
29 | + add_action('init', [ $this, 'postType' ]); |
|
30 | + add_action('init', [ $this, 'taxonomyType' ]); |
|
31 | + add_action('init', [ $this, 'fields' ], 20); |
|
32 | + add_action('init', [ $this, 'rewriteRules' ], 20); |
|
33 | 33 | |
34 | - add_filter('post_type_link', [$this, 'permalink'], 1, 2); |
|
35 | - add_filter('term_link', [$this, 'taxonomyPermalink'], 1, 2); |
|
34 | + add_filter('post_type_link', [ $this, 'permalink' ], 1, 2); |
|
35 | + add_filter('term_link', [ $this, 'taxonomyPermalink' ], 1, 2); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | { |
65 | 65 | if (is_array($postTypes)) { |
66 | 66 | foreach ($postTypes as $key => $postType) { |
67 | - $postTypes[$key] = static::singleSerialize($postType); |
|
67 | + $postTypes[ $key ] = static::singleSerialize($postType); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | return $postTypes; |
@@ -11,10 +11,10 @@ |
||
11 | 11 | |
12 | 12 | namespace spec\LIN3S\WPFoundation\Configuration\Acf; |
13 | 13 | |
14 | -use fixtures\LIN3S\WPFoundation\Acf; |
|
15 | 14 | use LIN3S\WPFoundation\Configuration\Acf\Acf as BaseAcf; |
16 | 15 | use LIN3S\WPFoundation\Configuration\Acf\AcfInterface; |
17 | 16 | use PhpSpec\ObjectBehavior; |
17 | +use fixtures\LIN3S\WPFoundation\Acf; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Custom ACF Wysiwyg class adding some useful features. |
@@ -11,10 +11,10 @@ |
||
11 | 11 | |
12 | 12 | namespace spec\LIN3S\WPFoundation\Configuration\Login; |
13 | 13 | |
14 | -use fixtures\LIN3S\WPFoundation\Login; |
|
15 | 14 | use LIN3S\WPFoundation\Configuration\Login\Login as BaseLogin; |
16 | 15 | use LIN3S\WPFoundation\Configuration\Login\LoginInterface; |
17 | 16 | use PhpSpec\ObjectBehavior; |
17 | +use fixtures\LIN3S\WPFoundation\Login; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Spec of Login class. |
@@ -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 | /** |
@@ -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 |