нет смысла искать схему если данные заведомо не нужно конвертировать
This commit is contained in:
parent
7c2d619774
commit
e11b3153da
@ -28,6 +28,11 @@ class ResponseListener
|
||||
return;
|
||||
}
|
||||
|
||||
if (is_iterable($data) && 0 === count($data)) {
|
||||
$response->setData($data);
|
||||
return;
|
||||
}
|
||||
|
||||
$dto2dataConverter = new Dto2DataConverter();
|
||||
$schema = $this->grabSchema($event);
|
||||
$data = $dto2dataConverter->convert($data, $schema);
|
||||
|
Loading…
Reference in New Issue
Block a user