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