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

27 lines
424 B
PHP

<?php
namespace AutomateWoo\Workflows\VariableParsing;
/**
* Class ExcludedVariable
*
* @since 5.4.0
*/
class ExcludedParsedVariable {
/**
* E.g. 'unsubscribe_url'.
*
* @var string
*/
public $variable_string;
/**
* ExcludedParsedVariable constructor.
*
* @param string $variable_string
*/
public function __construct( string $variable_string ) {
$this->variable_string = $variable_string;
}
}