# fluentform/3.6.22/app/Services/fluentvalidator/fluentvalidator.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.22. 22 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.22/code/app/Services/fluentvalidator/fluentvalidator.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.22/raw/app/Services/fluentvalidator/fluentvalidator.php
- Modified: 2019-05-31T20:28:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/3.6.22/code/app/Services/fluentvalidator/fluentvalidator.php#L10-L20`.

```php
<?php defined('ABSPATH') or die;

/*
Plugin Name: Fluent Validator
Description: Fluent Validator WordPress Plugin to validate data.
Version: 1.0.0
Author: 
Author URI: 
Plugin URI: 
License: GPLv2 or later
Text Domain: fluentvalidator
Domain Path: /resources/languages
*/

require_once 'autoload.php';

if (! function_exists('fluentValidator')) {
    function fluentValidator($data = [], $rules = [], $messages = []) {
        return (new \FluentValidator\Validator($data, $rules, $messages));
    }
}

```
