File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/CastableValueInterface.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Value/CastableValueInterface.php 0000644 00000000721 15154755210 0033743 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Value;
defined( 'ABSPATH' ) || exit;
/**
* Interface CastableValueInterface
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Value
*/
interface CastableValueInterface {
/**
* Cast a value and return a new instance of the class.
*
* @param mixed $value Mixed value to cast to class type.
*
* @return self
*/
public static function cast( $value );
}