15 lines
279 B
PHP
15 lines
279 B
PHP
<?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 );
|
|
}
|
|
}
|