Automattic\WooCommerce\Vendor\League\Container\Argument
RawArgument{} WC 1.0
No Hooks.
Return
Null. Nothing.
Usage
$RawArgument = new RawArgument(); // use class methods
Methods
Code of RawArgument{} RawArgument{} WC 5.0.0
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;
}
}