mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
444 B
PHP
18 lines
444 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Security\Tests\MemberTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Security\PasswordValidator;
|
|
|
|
class TestPasswordValidator extends PasswordValidator implements TestOnly
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->setMinLength(7);
|
|
$this->setHistoricCount(6);
|
|
$this->setMinTestScore(3);
|
|
$this->setTestNames(['lowercase', 'uppercase', 'digits', 'punctuation']);
|
|
}
|
|
}
|