From b80de57f0c51d9ad4d63d2212f7eb330a451bf35 Mon Sep 17 00:00:00 2001 From: sebastianMindee Date: Mon, 9 Dec 2024 10:55:12 +0100 Subject: [PATCH] fix typo --- src/Input/URLInputSource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Input/URLInputSource.php b/src/Input/URLInputSource.php index 0263840e..407f0223 100644 --- a/src/Input/URLInputSource.php +++ b/src/Input/URLInputSource.php @@ -84,7 +84,7 @@ private static function generateFileName(?string $extension): string { $extension ??= ".tmp"; $random = substr(str_shuffle('0123456789abcdefghijklmnopqrstuvwxyz'), 1, 8); - return "mindee_temp_" . date('Y-m-d_H-i-s') . "_$random . $extension"; + return "mindee_temp_" . date('Y-m-d_H-i-s') . "_$random.$extension"; } /**