1 | <?php |
||
21 | class CustomFieldObjectDraft extends CustomFieldObject |
||
22 | { |
||
23 | /** |
||
24 | * @param $typeKey |
||
25 | * @param Context|callable $context |
||
26 | * @return CustomFieldObjectDraft |
||
27 | */ |
||
28 | 8 | public static function ofTypeKey($typeKey, $context = null) |
|
34 | |||
35 | /** |
||
36 | * @param string $typeId |
||
37 | * @param Context|callable $context |
||
38 | * @return CustomFieldObjectDraft |
||
39 | */ |
||
40 | public static function ofTypeId($typeId, $context = null) |
||
46 | |||
47 | /** |
||
48 | * @param TypeReference $type |
||
49 | * @param Context|callable $context |
||
50 | * @return CustomFieldObjectDraft |
||
51 | */ |
||
52 | 4 | public static function ofType(TypeReference $type, $context = null) |
|
58 | } |
||
59 |