Files
ledstar_laravel/app/Library/VK/Mapper/AttachmentMapper.php
T
amikhaylov e90314f18b Added VKBot
2026-05-28 02:16:26 +03:00

21 lines
439 B
PHP

<?php
declare(strict_types=1);
namespace App\Library\VK\Mapper;
class AttachmentMapper
{
public function map(array $attachments = []): array
{
$photos = [];
foreach ($attachments as $attachment) {
if( ($attachment['type'] === 'photo') && $attachment['photo']['sizes'] ) {
$photos[] = end($attachment['photo']['sizes'])['url'];
}
}
return $photos;
}
}