Hackzilla\PasswordGenerator\Generator\ComputerPasswordGenerator::setSymbols PHP Method

setSymbols() public method

Enable symbol characters.
public setSymbols ( boolean $enable = true )
$enable boolean
    public function setSymbols($enable = true)
    {
        if (!is_bool($enable)) {
            throw new \InvalidArgumentException('Expected boolean');
        }
        $this->setOptionValue(self::OPTION_SYMBOLS, $enable);
        return $this;
    }