Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
30 | protected function buildArguments(PluggableSchemaBuilderInterface $schemaBuilder) { |
||
31 | $arguments = parent::buildArguments($schemaBuilder); |
||
32 | |||
33 | // Set the default value of the format argument programmatically. |
||
34 | /** @var \Youshido\GraphQL\Field\AbstractInputField $format */ |
||
35 | $format = $arguments['format']; |
||
36 | $format->getConfig()->set('defaultValue', DateTime::ISO8601); |
||
37 | |||
38 | return $arguments; |
||
39 | } |
||
40 | |||
53 |