File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/OptionsAwareTrait.php.tar
httpdocs/wp-content/plugins/google-listings-and-ads/src/Options/OptionsAwareTrait.php 0000644 00000001022 15154623125 0033377 0 ustar 00 var/www/vhosts/uyarreklam.com.tr <?php
declare( strict_types=1 );
namespace Automattic\WooCommerce\GoogleListingsAndAds\Options;
defined( 'ABSPATH' ) || exit;
/**
* Trait OptionsAwareTrait
*
* @package Automattic\WooCommerce\GoogleListingsAndAds\Options
*/
trait OptionsAwareTrait {
/**
* The Options object.
*
* @var OptionsInterface
*/
protected $options;
/**
* Set the Options object.
*
* @param OptionsInterface $options
*/
public function set_options_object( OptionsInterface $options ): void {
$this->options = $options;
}
}