We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d82ac commit 89562c0Copy full SHA for 89562c0
1 file changed
src/UploadType.php
@@ -12,6 +12,13 @@ final class UploadType extends \Graphpinator\Type\ScalarType
12
By GraphQL viewpoint it is scalar type, but it must be used as input only.;
13
NOWDOC;
14
15
+ public function __construct()
16
+ {
17
+ parent::__construct();
18
+
19
+ $this->setSpecifiedBy('https://github.com/jaydenseric/graphql-multipart-request-spec');
20
+ }
21
22
public function validateNonNullValue(mixed $rawValue) : bool
23
{
24
return $rawValue instanceof \Psr\Http\Message\UploadedFileInterface;
0 commit comments