File "RuleInterface.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/file-manager/vendor/bitapps/wp-kit/src/Http/Request/Validator/RuleInterface.php
File size: 273 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\WPKit\Http\Request\Validator;

interface RuleInterface
{
    /**
     * Checks if value validate the rule
     *
     * @param string $value
     *
     * @return bool
     */
    public function validate($value);

    public function message();
}