File "RequiredValidator.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor_prefixed/wpdesk/wp-forms/src/Validator/RequiredValidator.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FSProVendor\WPDesk\Forms\Validator;
use FSProVendor\WPDesk\Forms\Validator;
class RequiredValidator implements \FSProVendor\WPDesk\Forms\Validator
{
public function is_valid($value)
{
return $value !== null;
}
public function get_messages()
{
return [];
}
}