15 lines
354 B
PHP
15 lines
354 B
PHP
<?php
|
|
|
|
use WPML\TM\Menu\TranslationServices\SectionFactory;
|
|
|
|
class WPML_TM_Translation_Roles_Section_Factory implements IWPML_TM_Admin_Section_Factory {
|
|
|
|
/**
|
|
* @return \WPML_TM_Admin_Section|\WPML_TM_Translation_Roles_Section
|
|
*/
|
|
public function create() {
|
|
return new WPML_TM_Translation_Roles_Section( ( new SectionFactory() )->create() );
|
|
}
|
|
|
|
}
|