• File: interface-installaton-step.php
  • Full Path: /home/monpetu/www/leoreno.fr/installation-steps/interface-installaton-step.php
  • Date Modified: 03/03/2026 2:45 AM
  • 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();
}