🎨 PHP CS Fixer

This commit is contained in:
Eric Espie
2025-11-24 17:36:57 +01:00
parent f2a5559eea
commit 039beb4c07
2 changed files with 3 additions and 2 deletions

View File

@@ -31,7 +31,7 @@ class ChoiceValueToLabelConverter extends AbstractConverter
}
$aOptions = array_flip($this->oChoiceBlock->GetOption('choices'));
if (!array_key_exists($oData, $aOptions) || is_null($aOptions[$oData]) ) {
if (!array_key_exists($oData, $aOptions) || is_null($aOptions[$oData])) {
return null;
}