File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Variables/Order_Customer_Note.php
<?php
// phpcs:ignoreFile
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
/**
 * @class Variable_Order_Customer_Note
 */
class Variable_Order_Customer_Note extends Variable {
	function load_admin_details() {
		$this->description = __( "Displays the customer provided note for the order.", 'automatewoo');
	}
	/**
	 * @param $order \WC_Order
	 * @param $parameters array
	 * @return string
	 */
	function get_value( $order, $parameters ) {
		return $order->get_customer_note();
	}
}