Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
16 | public static function processModelFieldDirective( |
||
17 | ModelGenerator $generator, |
||
18 | \GraphQL\Type\Definition\FieldDefinition $field, |
||
19 | \GraphQL\Language\AST\Node $directive |
||
20 | ): void { |
||
21 | $fieldName = $field->name; |
||
22 | $generator->fillable[] = $fieldName; |
||
23 | } |
||
32 |