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; } }