Update DropdownField.php

Update the enum example with a namespaces classname
This commit is contained in:
Antony Thorpe 2024-01-30 19:02:05 +13:00 committed by GitHub
parent 1eadc84a22
commit 90a3d60b59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ use SilverStripe\View\ArrayData;
* DropdownField::create( * DropdownField::create(
* 'Country', * 'Country',
* 'Country', * 'Country',
* singleton('MyObject')->dbObject('Country')->enumValues() * singleton(MyObject::class)->dbObject('Country')->enumValues()
* ); * );
* </code> * </code>
* *