PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Http
/
Senders
/
Factories
/
Editing: GuzzleMultipartBodyFactory.php
<?php declare(strict_types=1); namespace Saloon\Http\Senders\Factories; use Saloon\Data\MultipartValue; use GuzzleHttp\Psr7\MultipartStream; use Psr\Http\Message\StreamInterface; use Saloon\Contracts\MultipartBodyFactory; use Psr\Http\Message\StreamFactoryInterface; class GuzzleMultipartBodyFactory implements MultipartBodyFactory { /** * Create a multipart body * * @param array<MultipartValue> $multipartValues */ public function create(StreamFactoryInterface $streamFactory, array $multipartValues, string $boundary): StreamInterface { $elements = array_map(static function (MultipartValue $value) { return [ 'name' => $value->name, 'filename' => $value->filename, 'contents' => $value->value, 'headers' => $value->headers, ]; }, $multipartValues); return new MultipartStream($elements, $boundary); } }
SAVE
CANCEL