We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 200d192 commit 7ff60d9Copy full SHA for 7ff60d9
extension.neon
@@ -21,6 +21,7 @@ parameters:
21
- stubs/Forms/Form.stub
22
- stubs/Forms/Rules.stub
23
- stubs/Http/SessionSection.stub
24
+ - stubs/Http/FileUpload.stub
25
- stubs/Routing/Router.stub
26
- stubs/Utils/ArrayHash.stub
27
- stubs/Utils/Arrays.stub
stubs/Http/FileUpload.stub
@@ -0,0 +1,16 @@
1
+<?php
2
+
3
+namespace Nette\Http;
4
5
+class FileUpload
6
+{
7
8
+ /**
9
+ * @return array{0:positive-int, 1:positive-int}|null
10
+ */
11
+ public function getImageSize(): ?array
12
+ {
13
+ // nothing
14
+ }
15
16
+}
0 commit comments