WC_CLI::includes()privateWC 1.0

Load command files.

Method of the class: WC_CLI{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->includes();

WC_CLI::includes() code WC 8.7.0

private function includes() {
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-runner.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-rest-command.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-tool-command.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-update-command.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-tracker-command.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-com-command.php';
	require_once dirname( __FILE__ ) . '/cli/class-wc-cli-com-extension-command.php';
}