Skip to content

Commit

Permalink
add former dynamic properties to GraphQLArgument
Browse files Browse the repository at this point in the history
  • Loading branch information
joonlabs committed Apr 25, 2023
1 parent 11c85ec commit 9cef835
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Arguments/GraphQLArgument.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
*/
abstract class GraphQLArgument
{
protected $id;
protected $type;
protected string $id;
protected GraphQLType $type;
private string $description;
private $defaultValue;
private ?string $deprecationReason;

/**
* GraphQLArgument constructor.
Expand Down

0 comments on commit 9cef835

Please sign in to comment.