Hackzilla\PasswordGenerator\Tests\Generator\RequirementPasswordGeneratorTest::minMaxProvider PHP Method

minMaxProvider() public method

public minMaxProvider ( )
    public function minMaxProvider()
    {
        return array(array(RequirementPasswordGenerator::OPTION_UPPER_CASE, null), array(RequirementPasswordGenerator::OPTION_UPPER_CASE, 1), array(RequirementPasswordGenerator::OPTION_UPPER_CASE, 2), array(RequirementPasswordGenerator::OPTION_LOWER_CASE, null), array(RequirementPasswordGenerator::OPTION_LOWER_CASE, 1), array(RequirementPasswordGenerator::OPTION_LOWER_CASE, 2), array(RequirementPasswordGenerator::OPTION_NUMBERS, null), array(RequirementPasswordGenerator::OPTION_NUMBERS, 1), array(RequirementPasswordGenerator::OPTION_NUMBERS, 2), array(RequirementPasswordGenerator::OPTION_SYMBOLS, null), array(RequirementPasswordGenerator::OPTION_SYMBOLS, 1), array(RequirementPasswordGenerator::OPTION_SYMBOLS, 2));
    }