Skip to content
Snippets Groups Projects
Select Git revision
  • 07db294791ba134ceff747bc75034c03fa4e4861
  • master default protected
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 1.0.0-beta8
  • 1.0.0-beta7
  • 1.0.0-beta6
  • 1.0.0-beta5
  • 1.0.0-beta4
  • 1.0.0-beta3
  • 1.0.0-beta2
  • 1.0.0-beta1
14 results

webpack.config.js

Blame
  • NoValidateValidator.php 243 B
    <?php
    
    namespace WPDesk\Forms\Validator;
    
    use WPDesk\Forms\Validator;
    
    class NoValidateValidator implements Validator {
    	public function is_valid( $value ): bool {
    		return true;
    	}
    
    	public function get_messages(): array {
    		return [];
    	}
    
    }