mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-14 22:28:42 +02:00
23 lines
426 B
PHP
23 lines
426 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2026 Combodo SAS
|
|
* @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\FileType;
|
|
|
|
class FileFormBlock extends AbstractTypeFormBlock
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function GetFormType(): string
|
|
{
|
|
return FileType::class;
|
|
}
|
|
}
|