PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Data
/
Editing: MultipartValue.php
<?php declare(strict_types=1); namespace Saloon\Data; use InvalidArgumentException; use Psr\Http\Message\StreamInterface; class MultipartValue { /** * Constructor * * @param \Psr\Http\Message\StreamInterface|resource|string|int $value * @param array<string, mixed> $headers */ public function __construct( public string $name, public mixed $value, public ?string $filename = null, public array $headers = [] ) { if (! $value instanceof StreamInterface && ! is_resource($value) && ! is_string($value) && ! is_numeric($value)) { throw new InvalidArgumentException(sprintf('The value property must be either a %s, resource, string or numeric.', StreamInterface::class)); } } }
SAVE
CANCEL