• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/Dto/Property.php
  • Класс: BitrixMobileDtoProperty
  • Вызов: Property::getCaster
private function getCaster(): ?Caster
{
	$casts = $this->object->getCachedCasts();
	$caster = $casts[$this->getName()] ?? null;

	if ($caster)
	{
		return $caster;
	}

	if ($type = $this->property->getType())
	{
		return Type::makeCasterByPropertyType($type);
	}

	return null;
}