File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/Activateable.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Infrastructure/Activateable.php 0000644 00000000733 15154730244 0033742 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Infrastructure;
/**
* Something that can be activated.
*
* By implementing a class with this interface, the plugin will automatically hook
* it up to the WordPress activation hook. This means we don't have to worry about
* manually writing activation code.
*/
interface Activateable {
/**
* Activate the service.
*
* @return void
*/
public function activate(): void;
}