mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
26 lines
468 B
PHP
26 lines
468 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2025 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Forms\Block\Base;
|
|
|
|
use Combodo\iTop\Forms\Block\AbstractTypeFormBlock;
|
|
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
|
|
|
|
/**
|
|
* Form block for string.
|
|
*
|
|
*/
|
|
class IntegerFormBlock extends AbstractTypeFormBlock
|
|
{
|
|
/** @inheritdoc */
|
|
public function GetFormType(): string
|
|
{
|
|
return IntegerType::class;
|
|
}
|
|
|
|
}
|