fix gitlab tests

This commit is contained in:
root
2026-06-09 02:32:58 -04:00
parent 20a0b6c4e5
commit 6def9993da
1489 changed files with 10449 additions and 11356 deletions
@@ -20,7 +20,7 @@ class SlipPrinterConfigService
if ($userId && $userId > 0) {
$user = User::query()->select('firstname', 'lastname')->find($userId);
if ($user) {
$full = trim(($user->firstname ?? '').' '.($user->lastname ?? ''));
$full = trim(($user->firstname ?? '') . ' ' . ($user->lastname ?? ''));
if ($full !== '') {
return $full;
}
@@ -40,7 +40,6 @@ class SlipPrinterConfigService
return $val;
}
}
return $default;
};