This repository was archived by the owner on Oct 24, 2023. It is now read-only.
Commit abc0afd
Jens Schulze
fix(AssetDraft): correct type for custom field object
BREAKING CHANGE: AssetDraft requires CustomFieldObjectDraft instead of CustomFieldObject
Before:
```
$assetDraft = AssetDraft::of()->setCustom(CustomFieldObject::of());
```
After:
```
$assetDraft = AssetDraft::of()->setCustom(CustomFieldObjectDraft::of());
```1 parent 6f73f06 commit abc0afd
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
30 | 31 | | |
31 | 32 | | |
32 | 33 | | |
33 | | - | |
| 34 | + | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
0 commit comments