Automattic\WooCommerce\Vendor\League\Container\Argument
RawArgument{}
No Hooks.
Usage
$RawArgument = new RawArgument(); // use class methods
Methods
- public __construct($value)
- public getValue()
RawArgument{} RawArgument{} code WC 9.7.1
class RawArgument implements RawArgumentInterface { /** * @var mixed */ protected $value; /** * Construct. * * @param mixed $value */ public function __construct($value) { $this->value = $value; } /** * {@inheritdoc} */ public function getValue() { return $this->value; } }