mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MNT Tidy up double assignment
This commit is contained in:
parent
ec99be0fd5
commit
a16b268ff7
@ -396,7 +396,7 @@ abstract class DBSchemaManager
|
||||
// Create custom fields
|
||||
if ($fieldSchema) {
|
||||
foreach ($fieldSchema as $fieldName => $fieldSpec) {
|
||||
$fieldSpec = $fieldSpec ??= '';
|
||||
$fieldSpec ??= '';
|
||||
// convert Enum short array syntax to long array syntax to make parsing $arrayValue below easier
|
||||
$fieldSpec = preg_replace('/^(enum\()\[(.*?)\]/i', '$1array($2)', $fieldSpec);
|
||||
//Is this an array field?
|
||||
|
Loading…
Reference in New Issue
Block a user