Select Git revision
Validator.php
Validator.php 194 B
<?php
namespace WPDesk\Forms;
interface Validator {
/** @param mixed $value */
public function is_valid( $value ): bool;
/** @return string[] */
public function get_messages(): array;
}