<?php
namespace Automattic\WooCommerce\Caches;
use Automattic\WooCommerce\Internal\Features\FeaturesController;
use Automattic\WooCommerce\Utilities\OrderUtil;
class OrderCacheController {
private $order_cache;
private $features_controller;
private $orders_cache_usage_backup = null;
final public function init( OrderCache $order_cache ) {
$this->order_cache = $order_cache;
}