🎨 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;
}

View File

@@ -1,4 +1,5 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
@@ -27,4 +28,4 @@ class StringIOFormat extends AbstractIOFormat
{
return $this->sValue;
}
}
}