LDAPChangePasswordHandler::changePasswordForm()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\LDAP\Authenticators;
4
5
use SilverStripe\LDAP\Forms\LDAPChangePasswordForm;
6
use SilverStripe\Security\MemberAuthenticator\ChangePasswordHandler;
7
8
class LDAPChangePasswordHandler extends ChangePasswordHandler
9
{
10
    private static $allowed_actions = [
0 ignored issues
show
introduced by
The private property $allowed_actions is not used, and could be removed.
Loading history...
11
        'changepassword',
12
        'changePasswordForm',
13
    ];
14
15
    /**
16
     * Factory method for the lost password form
17
     *
18
     * @return LDAPChangePasswordForm
19
     */
20
    public function changePasswordForm()
21
    {
22
        return LDAPChangePasswordForm::create($this, 'ChangePasswordForm');
23
    }
24
}
25