/
AleksWork
/
diary_plants
Обзор
Документация
Войти
/
AleksWork
/
diary_plants
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/Controller/Web/Dashboard/Group/CreateGroup/Input/CreateGroupDTO.php
20 строк
472 B
AlexeySerov
Add contoller form and template for Group entity
19 фев 2026, 15:58
19 фев 2026, 15:58
76e1aef
Код
Авторство
О чём код?
<?php namespace App\Controller\Web\Dashboard\Group\CreateGroup\Input; use Symfony\Component\Validator\Constraints as Assert; class CreateGroupDTO { public function __construct( #[Assert\Type('boolean')] public bool $isActive, #[Assert\Length(min:2)] #[Assert\Length(max:255)] public string $title, #[Assert\Length(min:2)] #[Assert\Length(max:1024)] public ?string $description = null, ) { } }