first commit
This commit is contained in:
@@ -0,0 +1,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 );
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user