From 6e1402f7bd5602cd72fbbfb2eed9ffd22f57f0db Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 24 May 2021 08:08:01 +0000 Subject: [PATCH] Calling it static --- src/Util/HTTPInputData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/HTTPInputData.php b/src/Util/HTTPInputData.php index 490dda5f6..c1dba263c 100644 --- a/src/Util/HTTPInputData.php +++ b/src/Util/HTTPInputData.php @@ -132,7 +132,7 @@ class HTTPInputData $filename = $matches[4] ?? ''; if (!empty($filename)) { - $files[$name] = self::fetchFileData($stream, $boundary, $headers, $filename); + $files[$name] = static::fetchFileData($stream, $boundary, $headers, $filename); return ['variables' => $variables, 'files' => $files]; } else { $variables = self::fetchVariables($stream, $boundary, $headers, $name, $variables);