From a8704ddd2fd65a7d683bb967205870b268d26941 Mon Sep 17 00:00:00 2001 From: Kailey Lampert Date: Thu, 29 Jan 2026 09:03:42 -0700 Subject: [PATCH] Fix cache add command example argument order --- src/Cache_Command.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cache_Command.php b/src/Cache_Command.php index f4a5e396..29cb7367 100644 --- a/src/Cache_Command.php +++ b/src/Cache_Command.php @@ -56,8 +56,8 @@ class Cache_Command extends WP_CLI_Command { * ## EXAMPLES * * # Add cache. - * $ wp cache add my_key my_group my_value 300 - * Success: Added object 'my_key' in group 'my_value'. + * $ wp cache add my_key my_value my_group 300 + * Success: Added object 'my_key' in group 'my_group'. * * @param array{string, string, string, string} $args Positional arguments. * @param array $assoc_args Associative arguments.