File "interface-installaton-step.php"

Full Path: /home/fineflavourcocoa/public_html/wp-content/plugins/woocommerce/includes/wccom-site/installation/installation-steps/interface-installaton-step.php
File size: 381 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Interface for installation steps.
 *
 * @package WooCommerce\WCCom
 * @since   7.7.0
 */

defined( 'ABSPATH' ) || exit;

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();
}