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