• File: Suspend.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/Utilities/Suspend/Suspend.php
  • File size: 352 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\Utilities\Suspend;

interface Suspend {

	/**
	 * Manually resume the suspended logic.
	 *
	 * @return void
	 */
	public function resume();

	/**
	 * Run some function and automatically resume the suspended logic.
	 *
	 * @param callable $function
	 *
	 * @return mixed
	 */
	public function runAndResume( callable $function );
}