File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/InstallableInterface.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Internal/Interfaces/InstallableInterface.php0000644 00000001046 15155371611 0036246 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Internal\Interfaces;
defined( 'ABSPATH' ) || exit;
/**
* Interface Installable
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Internal\Interfaces
*/
interface InstallableInterface {
/**
* Run installation logic for this class.
*
* @param string $old_version Previous version before updating.
* @param string $new_version Current version after updating.
*/
public function install( string $old_version, string $new_version ): void;
}