From 8c93d36d953ae3545e8ba3c5effcf6d4b0612454 Mon Sep 17 00:00:00 2001 From: Matthias Pfefferle Date: Tue, 5 Dec 2023 12:52:28 +0100 Subject: [PATCH] fix PHPCS issue --- includes/compat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/compat.php b/includes/compat.php index 3dd405c..c0996af 100644 --- a/includes/compat.php +++ b/includes/compat.php @@ -44,6 +44,6 @@ if ( ! function_exists( 'is_countable' ) ) { * @return bool True if `$value` is countable, otherwise false. */ function is_countable( $value ) { - return is_array( $value ) || $value instanceof \Countable; + return is_array( $value ) || $value instanceof \Countable; } }