Skip to content
Snippets Groups Projects
Select Git revision
  • 2c34ab8d625b8c22e7632109a0923dd5491b4421
  • master default protected
  • bugfix/wordpress-review
  • initialize-tracker
  • 1.3.0
  • 1.2.3
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.2.0-beta.1
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
16 results

Test_Plugin_Bootstrap.php

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