Automattic\WooCommerce\Admin\RemoteSpecs\RuleProcessors\Transformers
DotNotation::validate()
Validate Transformer arguments.
Метод класса: DotNotation{}
Хуков нет.
Возвращает
Разное
.
Использование
$DotNotation = new DotNotation(); $DotNotation->validate( ?stdClass $arguments );
- ?stdClass $arguments **
- -
По умолчанию: null
Код DotNotation::validate() DotNotation::validate WC 9.7.1
public function validate( ?stdClass $arguments = null ) { if ( ! isset( $arguments->path ) ) { return false; } return true; }