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

27 lines
455 B
PHP

<?php
namespace Rakit\Validation\Rules;
use Rakit\Validation\Rule;
class Json extends Rule
{
protected $message = "The :attribute must be a valid JSON string";
public function check($value)
{
if (! is_string($value) || empty($value)) {
return false;
}
json_decode($value);
if (json_last_error() !== JSON_ERROR_NONE) {
return false;
}
return true;
}
}