Automattic\WooCommerce\Vendor\League\Container\Argument
RawArgument{}
Хуков нет.
Использование
$RawArgument = new RawArgument(); // use class methods
Методы
- public __construct($value)
- public getValue()
Код RawArgument{} RawArgument{} WC 9.2.3
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; } }