| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct() |
||
| 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']); |
||
| 32 | } |
||
| 33 | |||
| 86 |