<?php
namespace App\Model;
use Symfony\Component\Validator\Constraints as Assert;
class GetToggleRequestDTO
{
public function __construct(
#[Assert\NotBlank]
public string $domain,
#[Assert\Choice(choices: [0, 1])]
public int $expectedStatus,
#[Assert\NotBlank]
public int $certId,
) {
}
} Back to Directory