From edf3b996de6e1d47e109eb03573d1cbcb9330be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Sun, 14 Jan 2024 21:00:18 +0100 Subject: [PATCH] fix phpstan --- htdocs/core/class/utils_diff.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/utils_diff.class.php b/htdocs/core/class/utils_diff.class.php index 9e09fc06879..e9ce4838a08 100644 --- a/htdocs/core/class/utils_diff.class.php +++ b/htdocs/core/class/utils_diff.class.php @@ -31,7 +31,7 @@ class Diff * * @param string $string1 First string * @param string $string2 Second string - * @param string $compareCharacters true to compare characters, and false to compare lines; this optional parameter defaults to false + * @param boolean $compareCharacters true to compare characters, and false to compare lines; this optional parameter defaults to false * @return array Array of diff */ public static function compare($string1, $string2, $compareCharacters = false)