Modernize to PHP 7.1

This commit is contained in:
Yassine Guedidi
2025-04-05 13:15:06 +02:00
parent 241cddc899
commit f8c8bb7d93
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ class GrabySiteConfigBuilder implements SiteConfigBuilder
continue;
}
list($fieldName, $fieldValue) = explode('=', $extraField, 2);
[$fieldName, $fieldValue] = explode('=', $extraField, 2);
$extraFields[$fieldName] = $fieldValue;
}