Automattic\WooCommerce\Admin\RemoteInboxNotifications\Transformers

DotNotation::validate()publicWC 1.0

Validate Transformer arguments.

Method of the class: DotNotation{}

No Hooks.

Return

Mixed.

Usage

$DotNotation = new DotNotation();
$DotNotation->validate( $arguments );
$arguments(stdClass|null)
arguments to validate.
Default: null

DotNotation::validate() code WC 8.7.0

public function validate( stdClass $arguments = null ) {
	if ( ! isset( $arguments->path ) ) {
		return false;
	}

	return true;
}