Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wpml-string-translation
/
classes
/
MO
/
File
:
ManagerFactory.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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 ) ] ); } }