Files
doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/classes/wp-cli/factories/ClearCacheFactory.php
2023-09-12 21:41:04 +02:00

16 lines
348 B
PHP

<?php
namespace WPML\CLI\Core\Commands;
use function WPML\Container\make;
class ClearCacheFactory implements IWPML_Core {
/**
* @return ClearCache
* @throws \WPML\Auryn\InjectionException If it's not possible to create the instance (see \WPML\Auryn\Injector::make).
*/
public function create() {
return make( ClearCache::class );
}
}