StocksNew/stubs/nwidart-stubs/rule.implicit.stub
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

23 lines
400 B
Plaintext

<?php
namespace $NAMESPACE$;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class $CLASS$ implements ValidationRule
{
/**
* Indicates whether the rule should be implicit.
*/
public bool $implicit = true;
/**
* Run the validation rule.
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
//
}
}