LDAPLoginHandler   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A loginForm() 0 6 1
1
<?php
2
3
namespace SilverStripe\LDAP\Authenticators;
4
5
use SilverStripe\LDAP\Forms\LDAPLoginForm;
6
use SilverStripe\Security\MemberAuthenticator\LoginHandler;
7
8
class LDAPLoginHandler extends LoginHandler
9
{
10
    /**
11
     * @var array
12
     * @config
13
     */
14
    private static $allowed_actions = [
0 ignored issues
show
introduced by
The private property $allowed_actions is not used, and could be removed.
Loading history...
15
        'LoginForm',
16
    ];
17
18
    public function loginForm()
19
    {
20
        return LDAPLoginForm::create(
21
            $this,
22
            get_class($this->authenticator),
23
            'LoginForm'
24
        );
25
    }
26
}
27