Hackzilla\PasswordGenerator\Generator\HumanPasswordGenerator::getMinPasswordLength PHP Method

getMinPasswordLength() public method

Calculate how long the password would be using minimum word length
public getMinPasswordLength ( ) : integer
return integer
    public function getMinPasswordLength()
    {
        $wordCount = $this->getWordCount();
        return $this->getMinWordLength() * $wordCount + strlen($this->getWordSeparator()) * ($wordCount - 1);
    }