Skip to content

Commit d3298e2

Browse files
committed
lint fix
1 parent 2ea92ae commit d3298e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cache_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ function ( $key ) {
604604
if ( $patched_value === $old_value ) {
605605
WP_CLI::success( "Value passed for cache key '$key' is unchanged." );
606606
} else {
607-
$success = wp_cache_set( $key, $patched_value, $group, (int) $expiration );
607+
$success = wp_cache_set( $key, $patched_value, $group, $expiration );
608608
if ( $success ) {
609609
WP_CLI::success( "Updated cache key '$key'." );
610610
} else {

0 commit comments

Comments
 (0)