Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::__construct()publicWC 1.0

Constructor

Method of the class: Tax{}

No Hooks.

Return

null. Nothing (null).

Usage

$Tax = new Tax();
$Tax->__construct( $task_list );
$task_list(TaskList) (required)
Parent task list.

Tax::__construct() code WC 8.7.0

public function __construct( $task_list ) {
	parent::__construct( $task_list );
	add_action( 'admin_enqueue_scripts', array( $this, 'possibly_add_return_notice_script' ) );
}