oont-contents/plugins/woocommerce/includes/wccom-site/installation/installation-steps/interface-installaton-step.php
2025-02-08 15:10:23 +01:00

23 lines
381 B
PHP

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