We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a288a74 commit 30814a5Copy full SHA for 30814a5
UPGRADE-4.0.md
@@ -302,14 +302,14 @@ Form
302
Before:
303
304
```php
305
- 'choice_value' => new PropertyPath('range'),
+ 'choice_value' => 'range',
306
'choice_label' => 'strtoupper',
307
```
308
309
After:
310
311
312
- 'choice_value' => 'range',
+ 'choice_value' => new PropertyPath('range'),
313
'choice_label' => function ($choice) {
314
return strtoupper($choice);
315
},
0 commit comments