Дорабоатл чтобы объект можно было сериализовать с строку через трансформаторы
This commit is contained in:
parent
eb128bda28
commit
e3290afe79
@ -65,6 +65,7 @@ class Dto2DataConverter
|
||||
|
||||
$value = $this->grabValue($object, $sourceName, $tags);
|
||||
|
||||
$canSkip = false;
|
||||
// Если нет карты, то не сериализуем.
|
||||
if (is_iterable($value)) {
|
||||
$childMap = is_array($propertyInfo) ? $propertyInfo : null;
|
||||
@ -72,10 +73,15 @@ class Dto2DataConverter
|
||||
} elseif (is_object($value) && is_array($propertyInfo)) {
|
||||
$value = $this->convertObjectByMap($value, $propertyInfo, $tags);
|
||||
} elseif (!is_scalar($value) && null !== $value) {
|
||||
continue;
|
||||
$canSkip = true;
|
||||
}
|
||||
|
||||
$this->processIterationTransformers($object, $sourceName, $value, $tags);
|
||||
|
||||
if ($canSkip && !is_scalar($value) && null !== $value) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$dataPath = $this->grabIterationDataPath($object, $sourceName, $tags);
|
||||
$data[$dataPath] = $value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user