Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
37 | 3 | public function createUploadedFile( |
|
38 | StreamInterface $stream, |
||
39 | ?int $size = null, |
||
40 | int $error = UPLOAD_ERR_OK, |
||
41 | ?string $clientFilename = null, |
||
42 | ?string $clientMediaType = null |
||
43 | ): UploadedFileInterface { |
||
44 | 3 | return new UploadedFile( |
|
45 | 3 | $stream, |
|
46 | 3 | $size, |
|
47 | 3 | $error, |
|
48 | 3 | $clientFilename, |
|
49 | 3 | $clientMediaType |
|
50 | 3 | ); |
|
53 |