N°7063 - Forms SDK - Add Symfony forms component

error forms issue
This commit is contained in:
Benjamin Dalsass
2023-12-27 16:53:39 +01:00
parent d6970f6486
commit 2bcc4d9989
25 changed files with 450 additions and 370 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Combodo\iTop\FormImplementation\Dto;
use Symfony\Component\Validator\Constraints as Assert;
class ObjectSearchDto
{
public function __construct(
#[Assert\NotBlank]
public readonly string $class,
#[Assert\NotBlank]
public readonly string $oql,
public readonly string $fields,
public readonly string $search = '',
) {
}
}