| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 1 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function createUploadedFile( |
||
| 24 | StreamInterface $stream, |
||
| 25 | int $size = null, |
||
| 26 | int $error = UPLOAD_ERR_OK, |
||
| 27 | string $clientFilename = null, |
||
| 28 | string $clientMediaType = null |
||
| 29 | ):UploadedFileInterface{ |
||
| 30 | return new UploadedFile($stream, $size ?? (int)$stream->getSize(), $error, $clientFilename, $clientMediaType); |
||
| 31 | } |
||
| 34 |