File "rule.stub"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/rule.stub
File size: 402 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace {{ namespace }};
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class {{ class }} implements ValidationRule
{
/**
* Run the validation rule.
*
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
//
}
}