File: //proc/self/cwd/wp-content/plugins/automatewoo/includes/Variables/Subscription_Shipping_Address.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* @class Variable_Subscription_Shipping_Address
*/
class Variable_Subscription_Shipping_Address extends Variable {
function load_admin_details() {
$this->description = __( "Displays the formatted shipping address for the subscription.", 'automatewoo');
}
/**
* @param $subscription \WC_Subscription
* @param $parameters array
* @return string
*/
function get_value( $subscription, $parameters ) {
return $subscription->get_formatted_shipping_address();
}
}