Owl\Providers\ValidatorServiceProvider::boot PHP Method

boot() public method

Bootstrap the application services.
public boot ( ) : void
return void
    public function boot()
    {
        \Validator::resolver(function ($translator, $data, $rules, $messages) {
            return new CustomValidator($translator, $data, $rules, $messages);
        });
    }
ValidatorServiceProvider