File "NoValueField.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-forms/src/Field/NoValueField.php
File size: 280 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FSVendor\WPDesk\Forms\Field;
/**
* Base class for Fields that can show itself on form but cannot process any value.
*
* @package WPDesk\Forms
*/
abstract class NoValueField extends BasicField
{
public function get_name()
{
return '';
}
}