yoti-8.x-2.5/sdk/Yoti/Util/Profile/AnchorListConverter.php
sdk/Yoti/Util/Profile/AnchorListConverter.php
<?php
namespace Yoti\Util\Profile;
use Traversable;
class AnchorListConverter
{
public static function convert(Traversable $anchorList)
{
$yotiAnchorsMap = [];
foreach ($anchorList as $protobufAnchor) {
if ($parsedAnchor = AnchorConverter::convert($protobufAnchor)) {
$yotiAnchorsMap[$parsedAnchor['oid']][] = $parsedAnchor['yoti_anchor'];
}
}
return $yotiAnchorsMap;
}
}
