HighSpeaker/vendor/illuminate/contracts/Validation/Rule.php

23 lines
396 B
PHP
Raw Normal View History

2022-12-24 19:40:40 +05:30
<?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();
}