@@ -11,11 +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; |
| 18 | -use Prophecy\Argument; |
|
| 17 | +use fixtures\LIN3S\WPFoundation\Login; |
|
| 19 | 18 | |
| 20 | 19 | /** |
| 21 | 20 | * Spec of Login class. |
@@ -24,11 +24,11 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | public function __construct() |
| 26 | 26 | { |
| 27 | - add_filter('login_errors', [$this, 'errors']); |
|
| 28 | - add_action('login_enqueue_scripts', [$this, 'logo']); |
|
| 29 | - add_filter('login_message', [$this, 'message']); |
|
| 30 | - add_filter('login_headertitle', [$this, 'title']); |
|
| 31 | - add_filter('login_headerurl', [$this, 'url']); |
|
| 27 | + add_filter('login_errors', [ $this, 'errors' ]); |
|
| 28 | + add_action('login_enqueue_scripts', [ $this, 'logo' ]); |
|
| 29 | + add_filter('login_message', [ $this, 'message' ]); |
|
| 30 | + add_filter('login_headertitle', [ $this, 'title' ]); |
|
| 31 | + add_filter('login_headerurl', [ $this, 'url' ]); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | $this->classes(); |
| 31 | 31 | $this->templateSelector(); |
| 32 | 32 | add_theme_support('post-thumbnails'); |
| 33 | - add_filter('timber_context', [$this, 'context']); |
|
| 33 | + add_filter('timber_context', [ $this, 'context' ]); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | protected function acf() |
| 40 | 40 | { |
| 41 | 41 | new Wysiwyg([ |
| 42 | - 'lin3s' => [1 => ['bold', 'italic', 'bullist', 'numlist', 'link', 'unlink']], |
|
| 42 | + 'lin3s' => [ 1 => [ 'bold', 'italic', 'bullist', 'numlist', 'link', 'unlink' ] ], |
|
| 43 | 43 | ]); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | private function templateSelector() |
| 50 | 50 | { |
| 51 | 51 | $self = $this; |
| 52 | - add_filter('theme_page_templates', function () use ($self) { |
|
| 53 | - return $self->templates([]); |
|
| 52 | + add_filter('theme_page_templates', function() use ($self) { |
|
| 53 | + return $self->templates([ ]); |
|
| 54 | 54 | }); |
| 55 | 55 | } |
| 56 | 56 | } |