📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 13:33:25
📂
/
/
opt
/
alt
/
tests
/
alt-php85-pecl-psr_1.2.0-1.el8
/
tests
✏️
Editing: SampleUploadedFileFactory.inc
<?php use Psr\Http\Message\UploadedFileFactoryInterface; use Psr\Http\Message\UploadedFileInterface; use Psr\Http\Message\StreamInterface; class SampleUploadedFileFactory implements UploadedFileFactoryInterface { public function createUploadedFile( StreamInterface $stream, ?int $size = null, int $error = \UPLOAD_ERR_OK, ?string $clientFilename = null, ?string $clientMediaType = null ): UploadedFileInterface { var_dump(__METHOD__, $stream, $size, $error, $clientFilename, $clientMediaType); return new SampleUploadedFile(); } }
💾 Save Changes
❌ Cancel