Automattic\WooCommerce\Internal\Admin\BlockTemplates

AbstractBlock::set_orderpublicWC 1.0

Set the block order.

Method of the class: AbstractBlock{}

No Hooks.

Returns

null. Nothing (null).

Usage

$AbstractBlock = new AbstractBlock();
$AbstractBlock->set_order( $order );
$order(int) (required)
The block order.

AbstractBlock::set_order() code WC 10.8.1

public function set_order( int $order ) {
	$this->order = $order;
}