mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-27 13:01:13 +01:00
18 lines
299 B
PHP
18 lines
299 B
PHP
|
<?php
|
||
|
|
||
|
namespace Rakit\Validation\Rules;
|
||
|
|
||
|
use Rakit\Validation\Rule;
|
||
|
|
||
|
class Ipv4 extends Rule
|
||
|
{
|
||
|
|
||
|
protected $message = "The :attribute is not valid IPv4 Address";
|
||
|
|
||
|
public function check($value)
|
||
|
{
|
||
|
return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false;
|
||
|
}
|
||
|
|
||
|
}
|