Automattic\WooCommerce\Vendor\League\Container\Argument
ClassNameWithOptionalValue::__construct()
Метод класса: ClassNameWithOptionalValue{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$ClassNameWithOptionalValue = new ClassNameWithOptionalValue(); $ClassNameWithOptionalValue->__construct( $className, $optionalValue );
- $className(строка) (обязательный)
- -
- $optionalValue(разное) (обязательный)
- -
Код ClassNameWithOptionalValue::__construct() ClassNameWithOptionalValue:: construct WC 7.5.1
public function __construct(string $className, $optionalValue) { $this->className = $className; $this->optionalValue = $optionalValue; }