| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| 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 | \Formularium\Field $fieldFormularium, |
||
| 20 | \GraphQL\Language\AST\DirectiveNode $directive |
||
| 21 | ): void { |
||
| 22 | $fieldName = $field->name; |
||
| 23 | $generator->hidden[] = $fieldName; |
||
| 24 | } |
||
| 35 |