/home/arranoyd/mice/wp-content/plugins/fluentform/app/Services/fluentvalidator/fluentvalidator.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));
    }
}