Bluz\Validator\Rule\AlphaNumeric::validateClean PHP Method

validateClean() protected method

Check for alphanumeric character(s)
protected validateClean ( string $input ) : boolean
$input string
return boolean
    protected function validateClean($input) : bool
    {
        return ctype_alnum($input);
    }