Psr17Factory::createUploadedFile( $stream,  $size = null,  $error = UPLOAD_ERR_OK,  $clientFilename = null,  $clientMediaType = null )

In this article

Source

public function createUploadedFile(StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null): UploadedFileInterface
{
    if (null === $size) {
        $size = $stream->getSize();
    }
    return new UploadedFile($stream, $size, $error, $clientFilename, $clientMediaType);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.