1 | <?php |
||
22 | class DirectiveArgumentNode extends Rule |
||
23 | { |
||
24 | /** |
||
25 | * @param DirectiveInvocation $parent |
||
26 | * @return TypeInvocation|ArgumentInvocation |
||
27 | */ |
||
28 | public function getTypeInvocation(DirectiveInvocation $parent): TypeInvocation |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getArgumentName(): string |
||
43 | |||
44 | /** |
||
45 | * @return ValueInterface |
||
46 | */ |
||
47 | public function getArgumentValue(): ValueInterface |
||
54 | } |
||
55 |
This check looks for function calls that miss required arguments.