Files
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

23 lines
396 B
PHP
Executable File

<?php
namespace Illuminate\Contracts\Validation;
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();
}