Automattic\WooCommerce\Blocks\BlockTypes

ProductRatingStars::register_block_type_assets()protectedWC 1.0

Overwrite parent method to prevent script registration.

It is necessary to register and enqueues assets during the render phase because we want to load assets only if the block has the content.

Method of the class: ProductRatingStars{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->register_block_type_assets();

ProductRatingStars::register_block_type_assets() code WC 9.4.2

protected function register_block_type_assets() {
	return null;
}