From 9c14e6f1e6df6bed42873d9f9d2a62a626d9ec73 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Wed, 23 Oct 2024 14:53:18 +0900 Subject: [PATCH] style(*): Change index param type (not nullable) in a private method --- src/Helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Helper.php b/src/Helper.php index b29628b..dcc6a75 100644 --- a/src/Helper.php +++ b/src/Helper.php @@ -49,7 +49,7 @@ private function buildRawBodyFromSuperglobals( private function appendFileData( array $fileArray, - ?int $index, + int $index, string $fileKey, string $boundary, int $threshold,