layfi-earn/vendor/illuminate/contracts/Validation/Rule.php
2025-01-27 20:49:47 +08:00

26 lines
438 B
PHP

<?php
namespace Illuminate\Contracts\Validation;
/**
* @deprecated see ValidationRule
*/
interface Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value);
/**
* Get the validation error message.
*
* @return string|array
*/
public function message();
}