<?php
// Bitrix\Bizproc\BaseType\Base :: formatValueMultiple()
// /dist/bitrix/modules/bizproc/lib/basetype/base.php:112
public static function formatValueMultiple(FieldType $fieldType, $value, $format = 'printable')
{
$value = (array) $value;
foreach ($value as $k => $v)
{
$value[$k] = static::formatValueSingle($fieldType, $v, $format);
}
return implode(static::getFormatSeparator($format), $value);
}