class-wpml-tm-user.php 305 Bytes
Newer Older
Den Isahac's avatar
Den Isahac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php

class WPML_TM_User {

	/** @var  TranslationManagement $tm_instance */
	protected $tm_instance;

	/**
	 * WPML_Custom_Field_Setting_Factory constructor.
	 *
	 * @param TranslationManagement $tm_instance
	 */
	public function __construct( &$tm_instance ) {
		$this->tm_instance = &$tm_instance;
	}
}