| Current Path : /home/nicedoo/www/wp-content/plugins/flexible-checkout-fields/src/Integration/ |
| Current File : /home/nicedoo/www/wp-content/plugins/flexible-checkout-fields/src/Integration/FieldsInterface.php |
<?php
namespace WPDesk\FCF\Free\Integration;
/**
* .
*/
interface FieldsInterface {
/**
* Returns list of available fields.
*
* @param string $group_key Optionally key of field group.
*
* @return FieldInterface[] List of objects with field data.
*/
public function get_available_fields( string $group_key = '' ): array;
}