class-wpml-wp-cache-factory.php 265 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php class WPML_WP_Cache_Factory { public function create_cache_group( $group ) { return new WPML_WP_Cache( $group ); } public function create_cache_item( $group, $key ) { return new WPML_WP_Cache_Item( $this->create_cache_group( $group ), $key ); } }