N°8772 - test driven compiler wip

This commit is contained in:
Eric Espie
2025-12-10 16:21:31 +01:00
parent 090925e28b
commit c40e7ab10e
13 changed files with 402 additions and 54 deletions

View File

@@ -0,0 +1,18 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\PropertyTree\ValueType;
use Combodo\iTop\Forms\Block\Base\TextFormBlock;
class ValueTypeString extends AbstractValueType
{
public function GetFormBlockClass(): string
{
return TextFormBlock::class;
}
}