File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/WithValueOptionsInterface.php.tar
wp-content/plugins/google-listings-and-ads/src/Product/Attributes/WithValueOptionsInterface.php 0000644 00000000775 15155473327 0037226 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Product\Attributes;
defined( 'ABSPATH' ) || exit;
/**
* Interface WithValueOptionsInterface
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Product\Attributes
*/
interface WithValueOptionsInterface {
/**
* Return an array of values available to choose for the attribute.
*
* Note: array key is used as the option key.
*
* @return array
*/
public static function get_value_options(): array;
}