| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | abstract class NamedTypeContext extends DefinitionContext |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * NamedTypeContext constructor. |
||
| 28 | * |
||
| 29 | * @param Context $context |
||
| 30 | * @param Schema $schema |
||
| 31 | * @param TypeDefinitionNode $ast |
||
| 32 | */ |
||
| 33 | public function __construct(Context $context, Schema $schema, TypeDefinitionNode $ast) |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getName(): string |
||
| 46 |