mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
22 lines
400 B
PHP
22 lines
400 B
PHP
<?php
|
|
|
|
namespace Xentral\Modules\Api\Validator\Rule;
|
|
|
|
use Rakit\Validation\Rule;
|
|
|
|
class DecimalRule extends Rule
|
|
{
|
|
/** @var string $message */
|
|
protected $message = "The attribute ':attribute' must be a decimal or integer value.";
|
|
|
|
/**
|
|
* @param mixed $value
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function check($value)
|
|
{
|
|
return is_numeric((string)$value);
|
|
}
|
|
}
|