Newer
Older
<?php
namespace App\Service\Dto;
use App\Service\Response\ResponseServiceInterface;
interface DtoServiceInterface
{
public function getClass(): ?DtoServiceInterface;
public function validate(ResponseServiceInterface $response): bool;
public function toArray(): ?array;
}