We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af683a3 commit 327d99aCopy full SHA for 327d99a
features/cache-patch.feature
@@ -6,8 +6,9 @@ Feature: Patch command available for the object cache
6
"""php
7
<?php
8
$set_foo = function(){
9
- wp_cache_set( 'my_key', ['foo' => 'bar'] );
10
- wp_cache_set( 'other_key', ['fuz' => 'biz'] );
+ //TODO: DEBUG, remove before merging branch.
+ WP_CLI::log( var_export( wp_cache_set( 'my_key', ['foo' => 'bar'] ), true ) );
11
+ WP_CLI::log( var_export( wp_cache_set( 'other_key', ['fuz' => 'biz'] ), true ) );
12
13
$complex_key = (object) [
14
'foo' => (object) [
0 commit comments