• File: ElementLinkFactory.php
  • Full Path: /home/lef/public_html/wp-content/plugins/wpml-translation-management/classes/jobs/utils/ElementLinkFactory.php
  • File size: 368 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WPML\TM\Jobs\Utils;

use function WPML\Container\make;
use WPML_Post_Translation;

class ElementLinkFactory {

	public static function create() {
		/**
		 * @var WPML_Post_Translation $wpml_post_translations;
		 */
		global $wpml_post_translations;

		return make(
			ElementLink::class,
			[ ':postTranslation' => $wpml_post_translations ]
		);
	}
}