MNT Tidy up double assignment

This commit is contained in:
Steve Boyd 2023-07-20 18:19:14 +12:00
parent ec99be0fd5
commit a16b268ff7
1 changed files with 1 additions and 1 deletions

View File

@ -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?