?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint/src/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/woocommerce/vendor/woocommerce/blueprint

?? Viewing: 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;
}


??

??