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

18 lines
275 B
PHP

<?php
namespace Rakit\Validation\Rules;
use Rakit\Validation\Rule;
class Integer extends Rule
{
protected $message = "The :attribute must be integer";
public function check($value)
{
return filter_var($value, FILTER_VALIDATE_INT) !== false;
}
}