• File: Process.php
  • Full Path: /home/lef/public_html/wp-content/plugins/wpml-string-translation/classes/MO/Generate/Process/Process.php
  • File size: 283 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WPML\ST\MO\Generate\Process;


interface Process {

	public function runAll();

	/**
	 * @return int Remaining
	 */
	public function runPage();

	/**
	 * @return int
	 */
	public function getPagesCount();

	/**
	 * @return bool
	 */
	public function isCompleted();
}