Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function allowed(): array |
||
21 | { |
||
22 | return [ |
||
23 | 'choiceFields' => 'Array[ChoiceCustomField]', // A list of choice custom fields. The property is not present if there are no choice fields [read-only], |
||
24 | 'numberFields' => 'Array[NumberCustomField]', // A list of number custom fields. The property is not present if there are no number fields [read-only], |
||
25 | 'onOffFields' => 'Array[OnOffCustomField]', // A list of on/off custom fields. The property is not present if there are no on/off fields [read-only], |
||
26 | 'textFields' => 'Array[TextCustomField]', // A list of text custom fields. The property is not present if there are no text fields [read-only] |
||
27 | ]; |
||
28 | } |
||
29 | } |
||
30 |