LDAPLoginHandler::loginForm()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 0
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