From 4b0de8e45f62048881653368664d47106992b17a Mon Sep 17 00:00:00 2001 From: Alefe Souza Date: Thu, 16 Nov 2023 02:33:00 -0300 Subject: [PATCH] Fix linting issue --- src/Utils/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/Utils.php b/src/Utils/Utils.php index 6cc144cef39..653c0b0b212 100644 --- a/src/Utils/Utils.php +++ b/src/Utils/Utils.php @@ -17,7 +17,7 @@ class Utils { * @return bool|int Returns true if the current WordPress version satisfies the comparison, false otherwise. */ public static function wp_version_compare( $version, $operator = null ) { - // Replace non-alphanumeric characters with a dot + // Replace non-alphanumeric characters with a dot. $version = preg_replace( '/[^0-9a-zA-Z\.]+/i', '.', $version ); $current_wp_version = get_bloginfo( 'version' );