2021-05-21 08:49:41 +02:00

22 lines
383 B
PHP

<?php
namespace Rakit\Validation\Rules;
use Rakit\Validation\Rule;
class AlphaDash extends Rule
{
protected $message = "The :attribute only allows a-z, 0-9, _ and -";
public function check($value)
{
if (! is_string($value) && ! is_numeric($value)) {
return false;
}
return preg_match('/^[\pL\pM\pN_-]+$/u', $value) > 0;
}
}