🎨 PHP CS Fixer

This commit is contained in:
Eric Espie
2025-11-27 11:45:38 +01:00
parent 8f39e69002
commit 8401aa1aec
8 changed files with 10 additions and 12 deletions

View File

@@ -111,7 +111,7 @@ class FormBlock extends AbstractTypeFormBlock
private function VerifyBlockClassName(string $sBlockClass): void
{
if (!is_a($sBlockClass, AbstractFormBlock::class, true)) {
throw new FormBlockException('The block type '.json_encode($sBlockClass).' is not a subclass of AbstractFormBlock.');
throw new FormBlockException('The block type '.json_encode($sBlockClass).' is not a subclass of '.json_encode(AbstractFormBlock::class));
}
}