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