1 | <?php |
||
18 | final class FieldObject extends ObjectDefinition |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | public const TYPE_NAME = '__Field'; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | public const TYPE_DESCRIPTION = 'Object and Interface types are described by a list of Fields, each of |
||
29 | which has a name, potentially a list of arguments, and a return type.'; |
||
30 | |||
31 | /** |
||
32 | * @var int |
||
33 | */ |
||
34 | public const TYPE_LINE = 53; |
||
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 |