for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Bluz Framework Component
*
* @copyright Bluz PHP Team
* @link https://github.com/bluzphp/framework
*/
declare(strict_types=1);
namespace Bluz\Validator\Rule;
* Check for alphanumeric character(s)
* @package Bluz\Validator\Rule
class AlphaNumericRule extends AbstractCtypeRule
{
* @param string $input
* @return bool
protected function validateClean($input) : bool
return ctype_alnum($input);
}
* Get error template
* @return string
public function getDescription() : string
if (empty($this->additionalChars)) {
return __('must contain only letters and digits');
return __('must contain only letters, digits and "%s"', $this->additionalChars);