automatewoo/includes/Variables/Customer_Generate_Coupon.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

21 lines
474 B
PHP

<?php
namespace AutomateWoo;
defined( 'ABSPATH' ) || exit;
/**
* @class Variable_Customer_Generate_Coupon
*/
class Variable_Customer_Generate_Coupon extends Variable_Abstract_Generate_Coupon {
/**
* @param Customer $customer
* @param array $parameters
* @param Workflow $workflow
* @return string
*/
public function get_value( $customer, $parameters, $workflow ) {
return $this->generate_coupon( $customer->get_email(), $parameters, $workflow );
}
}