From 30ac0025bf2c470dbb6a0b6daaa72033ea69b749 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 6 Sep 2025 10:14:33 +0200 Subject: [PATCH] #451 PHPStan level 5 --- lam/lib/modules/windowsUser.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lam/lib/modules/windowsUser.inc b/lam/lib/modules/windowsUser.inc index 85a403c7a..39cccc9b7 100644 --- a/lam/lib/modules/windowsUser.inc +++ b/lam/lib/modules/windowsUser.inc @@ -4347,7 +4347,7 @@ class windowsUser extends baseModule implements passwordService, AccountStatusPr * Returns the formatted value for the password expiration date. * * @param array $attributes user attributes ($this->attributes if null) - * @return String date or - + * @return string date or - */ private function formatPasswordExpires($attributes = null) { if ($attributes == null) { @@ -4363,8 +4363,8 @@ class windowsUser extends baseModule implements passwordService, AccountStatusPr /** * Formats a value in file time (100 ns since 1601-01-01). * - * @param integer $value time value - * @return String formatted value + * @param string $value time value + * @return string formatted value */ private function formatFileTime($value) { if (empty($value) || ($value == '-1')) { @@ -4380,7 +4380,7 @@ class windowsUser extends baseModule implements passwordService, AccountStatusPr /** * Returns a value in file time (100 ns since 1601-01-01). * - * @param integer $value time value as int + * @param string $value time value as int * @return DateTime|null time value */ public static function getFileTime($value): ?DateTime {