AuthenticationAjaxFactory.php 279 Bytes
<?php

namespace WPML\TM\Menu\TranslationServices;

use function WPML\Container\make;

class AuthenticationAjaxFactory implements \IWPML_Backend_Action_Loader {
	/**
	 * @return AuthenticationAjax
	 */
	public function create() {
		return make( AuthenticationAjax::class );
	}
}