File "rule.invokable.implicit.stub"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/rule.invokable.implicit.stub
File size: 567 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace {{ namespace }};

use Illuminate\Contracts\Validation\InvokableRule;

class {{ class }} implements InvokableRule
{
    /**
     * Indicates whether the rule should be implicit.
     *
     * @var bool
     */
    public $implicit = true;

    /**
     * Run the validation rule.
     *
     * @param  string  $attribute
     * @param  mixed  $value
     * @param  \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString  $fail
     * @return void
     */
    public function __invoke($attribute, $value, $fail)
    {
        //
    }
}