Automattic\WooCommerce\Vendor\League\Container\Argument
ClassName{} WC 1.0
No Hooks.
Return
Null. Nothing.
Usage
$ClassName = new ClassName(); // use class methods
Methods
Code of ClassName{} ClassName{} WC 5.0.0
class ClassName implements ClassNameInterface
{
/**
* @var string
*/
protected $value;
/**
* Construct.
*
* @param string $value
*/
public function __construct(string $value)
{
$this->value = $value;
}
/**
* {@inheritdoc}
*/
public function getClassName() : string
{
return $this->value;
}
}