• File: Result.php
  • Full Path: /home/lef/public_html/wp-content/plugins/wpml-translation-management/classes/ATE/Download/Result.php
  • File size: 345 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * @author OnTheGo Systems
 */

namespace WPML\TM\ATE\Download;

use WPML\Collect\Support\Collection;

class Result {

	/** @var Collection $processedJobs */
	public $processedJobs;

	/** @var int $downloadQueueSize */
	public $downloadQueueSize = 0;

	public function __construct() {
		$this->processedJobs = wpml_collect( [] );
	}
}