<?php
namespace App\Model;
use Symfony\Component\Validator\Constraints as Assert;
class GetSyncRequestDTO
{
public function __construct(
#[Assert\NotBlank]
public string $referer,
public ?int $withoutSync = 0,
) {
}
}
Back to Directory