????

Your IP : 18.116.21.127


Current Path : /proc/self/cwd/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint/src/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint/src/StepProcessor.php

<?php

namespace Automattic\WooCommerce\Blueprint;

/**
 * Interface StepProcessor
 */
interface StepProcessor {
	/**
	 * Process the schema.
	 *
	 * @param object $schema The schema to process.
	 *
	 * @return StepProcessorResult
	 */
	public function process( $schema ): StepProcessorResult;

	/**
	 * Get the step class.
	 *
	 * @return string
	 */
	public function get_step_class(): string;
}