Files
doitinpoland.com/wp-content/plugins/wpml-string-translation/classes/MO/File/ManagerFactory.php
2023-09-12 21:41:04 +02:00

17 lines
282 B
PHP

<?php
namespace WPML\ST\MO\File;
use function WPML\Container\make;
class ManagerFactory {
/**
* @return Manager
* @throws \WPML\Auryn\InjectionException
*/
public static function create() {
return make( Manager::class, [ ':builder' => make( Builder::class ) ] );
}
}