in php/src/ArrayUtil.php [89:96]
public static function join($raw, $sep)
{
if (!isset($raw) || empty($sep)) {
throw new \InvalidArgumentException('not a valid value for parameter');
}
return implode($sep, $raw);
}