STRATO-apps/wordpress_03/app/wp-content/plugins/tutor/migrations/Contracts/SingleProcessor.php

SHA-256: 96dc3cb087dd65f2d09b0081a71e2dd10c3bc9ec470fbfd9fb4e9b62cbb1068f
<?php
/**
 * Single processor interface.
 *
 * @package Tutor
 * @author Themeum <support@themeum.com>
 * @link https://themeum.com
 * @since 3.8.2
 */

namespace Tutor\Migrations\Contracts;

/**
 * Interface SingleProcessor
 *
 * @since 3.8.2
 */
interface SingleProcessor {
	/**
	 * Process a single item of a batch.
	 *
	 * @param mixed $item item.
	 *
	 * @return void
	 */
	public function process_item( $item ): void;
}