Hackzilla\PasswordGenerator\Generator\HybridPasswordGenerator::getCharacterList PHP Метод

getCharacterList() публичный Метод

Generate character list for us in generating passwords and remove segment separator from character list pool.
public getCharacterList ( ) : CharacterSet
Результат Hackzilla\PasswordGenerator\Model\CharacterSet Character list
    public function getCharacterList()
    {
        $characterList = parent::getCharacterList();
        $characterList = \str_replace($this->getSegmentSeparator(), '', $characterList);
        return new CharacterSet($characterList);
    }