Skip to content

Commit 9cef835

Browse files
committed
add former dynamic properties to GraphQLArgument
1 parent 11c85ec commit 9cef835

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Arguments/GraphQLArgument.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@
1010
*/
1111
abstract class GraphQLArgument
1212
{
13-
protected $id;
14-
protected $type;
13+
protected string $id;
14+
protected GraphQLType $type;
15+
private string $description;
16+
private $defaultValue;
17+
private ?string $deprecationReason;
1518

1619
/**
1720
* GraphQLArgument constructor.

0 commit comments

Comments
 (0)