File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
"source" : " https://github.com/php-fig/http-factory"
23
23
},
24
24
"require" : {
25
- "php" : " >=7.0.0 " ,
25
+ "php" : " >=7.1 " ,
26
26
"psr/http-message" : " ^1.0 || ^2.0"
27
27
},
28
28
"autoload" : {
Original file line number Diff line number Diff line change @@ -15,20 +15,20 @@ interface UploadedFileFactoryInterface
15
15
*
16
16
* @param StreamInterface $stream Underlying stream representing the
17
17
* uploaded file content.
18
- * @param int $size in bytes
18
+ * @param int|null $size in bytes
19
19
* @param int $error PHP file upload error
20
- * @param string $clientFilename Filename as provided by the client, if any.
21
- * @param string $clientMediaType Media type as provided by the client, if any.
20
+ * @param string|null $clientFilename Filename as provided by the client, if any.
21
+ * @param string|null $clientMediaType Media type as provided by the client, if any.
22
22
*
23
23
* @return UploadedFileInterface
24
24
*
25
25
* @throws \InvalidArgumentException If the file resource is not readable.
26
26
*/
27
27
public function createUploadedFile (
28
28
StreamInterface $ stream ,
29
- int $ size = null ,
29
+ ? int $ size = null ,
30
30
int $ error = \UPLOAD_ERR_OK ,
31
- string $ clientFilename = null ,
32
- string $ clientMediaType = null
31
+ ? string $ clientFilename = null ,
32
+ ? string $ clientMediaType = null
33
33
): UploadedFileInterface ;
34
34
}
You can’t perform that action at this time.
0 commit comments