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

validateClean() public method

Check for latin and numeric character(s)
public validateClean ( mixed $input ) : boolean
$input mixed
return boolean
    public function validateClean($input) : bool
    {
        return (bool) preg_match('/^[a-z0-9]+$/i', $input);
    }