File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Variables/Customer_City.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* @class Variable_Customer_City
*/
class Variable_Customer_City extends Variable {
function load_admin_details() {
$this->description = __( "Displays the customer's billing city.", 'automatewoo');
}
/**
* @param $customer Customer
* @param $parameters array
* @param $workflow Workflow
* @return string
*/
function get_value( $customer, $parameters, $workflow ) {
return $workflow->data_layer()->get_customer_city();
}
}