Viewing File: /usr/local/cpanel/whostmgr/docroot/cgi/ncssl/source/src/Model/GetSyncRequestDTO.php

<?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 File Manager