Automattic\WooCommerce\Vendor\League\Container\Argument
ClassNameWithOptionalValue::__construct() public WC 1.0
{} It's a method of the class: ClassNameWithOptionalValue{}
No Hooks.
Return
Null. Nothing.
Usage
$ClassNameWithOptionalValue = new ClassNameWithOptionalValue(); $ClassNameWithOptionalValue->__construct( $className, $optionalValue );
- $className(string) (required)
- -
- $optionalValue(mixed) (required)
- -
Code of ClassNameWithOptionalValue::__construct() ClassNameWithOptionalValue:: construct WC 5.0.0
public function __construct(string $className, $optionalValue)
{
$this->className = $className;
$this->optionalValue = $optionalValue;
}