Apply renaming of WPCacheEngine class.

This commit is contained in:
Vedanshu Jain 2023-01-24 14:53:47 +05:30
parent eb2900614c
commit 93bc959957
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
namespace Automattic\WooCommerce\Internal\DependencyManagement\ServiceProviders;
use Automattic\WooCommerce\Caching\WpCacheEngine;
use Automattic\WooCommerce\Caching\WPCacheEngine;
use Automattic\WooCommerce\Internal\DependencyManagement\AbstractServiceProvider;
/**
@ -16,13 +16,13 @@ class ObjectCacheServiceProvider extends AbstractServiceProvider {
* @var array
*/
protected $provides = array(
WpCacheEngine::class,
WPCacheEngine::class,
);
/**
* Register the classes.
*/
public function register() {
$this->share( WpCacheEngine::class );
$this->share( WPCacheEngine::class );
}
}