Skip to content

Commit

Permalink
Update SampleUploadedFileFactory.inc for PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andypost authored and jbboehr committed Sep 28, 2024
1 parent a46f438 commit 4d959c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/SampleUploadedFileFactory.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ class SampleUploadedFileFactory implements UploadedFileFactoryInterface
{
public function createUploadedFile(
StreamInterface $stream,
int $size = null,
?int $size = null,
int $error = \UPLOAD_ERR_OK,
string $clientFilename = null,
string $clientMediaType = null
?string $clientFilename = null,
?string $clientMediaType = null
): UploadedFileInterface
{
var_dump(__METHOD__, $stream, $size, $error, $clientFilename, $clientMediaType);
Expand Down

0 comments on commit 4d959c5

Please sign in to comment.