| 1 | <?php |
||
| 18 | final class DirectiveLocationEnum extends EnumDefinition |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | public const TYPE_NAME = '__DirectiveLocation'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | public const TYPE_DESCRIPTION = 'A Directive can be adjacent to many parts of the GraphQL language, |
||
| 29 | a __DirectiveLocation describes one such possible adjacencies.'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var int |
||
| 33 | */ |
||
| 34 | public const TYPE_LINE = 149; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * SchemaObject constructor. |
||
| 38 | * @param Document $document |
||
| 39 | */ |
||
| 40 | 9 | public function __construct(Document $document) |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @return bool |
||
| 50 | */ |
||
| 51 | public function isBuiltin(): bool |
||
| 55 | } |
||
| 56 |