• File: ManagerFactory.php
  • Full Path: /home/lef/public_html/wp-content/plugins/wpml-string-translation/classes/MO/File/ManagerFactory.php
  • File size: 282 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 ) ] );
	}
}