diff --git a/src/WordPress/Cache/Store.php b/src/WordPress/Cache/Store.php index 904e198..990c412 100644 --- a/src/WordPress/Cache/Store.php +++ b/src/WordPress/Cache/Store.php @@ -81,7 +81,7 @@ protected function set_path_defaults( $path ) { /** * @return mixed */ - protected function get_transient() { + public function get_transient() { if ( is_multisite() ) { return call_user_func_array( 'get_site_transient', func_get_args() ); } @@ -113,7 +113,7 @@ public function delete_cache_leaf( $path = [] ) { /** * @return bool */ - protected function delete_transient() { + public function delete_transient() { if ( is_multisite() ) { return call_user_func_array( 'delete_site_transient', func_get_args() ); } @@ -183,7 +183,7 @@ protected function build_cache_tree( $path ) { /** * */ - protected function set_transient() { + public function set_transient() { if ( is_multisite() ) { return call_user_func_array( 'set_site_transient', func_get_args() ); }