first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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 );
}
}