WC_WCCOM_Site_Installation_Step{}WC 1.0

No Hooks.

Usage

$WC_WCCOM_Site_Installation_Step = new WC_WCCOM_Site_Installation_Step();
// use class methods

Methods

  1. public __construct( $state )
  2. public run()

WC_WCCOM_Site_Installation_Step{} code WC 8.7.0

interface WC_WCCOM_Site_Installation_Step {
	/**
	 * Constructor.
	 *
	 * @param array $state The current installation state.
	 */
	public function __construct( $state );

	/**
	 * Run the step installation process.
	 */
	public function run();
}