mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-05 22:49:48 +01:00
37 lines
708 B
PHP
37 lines
708 B
PHP
<?php
|
|
namespace Aws\DynamoDb;
|
|
|
|
use GuzzleHttp\Psr7;
|
|
|
|
/**
|
|
* Special object to represent a DynamoDB binary (B) value.
|
|
*/
|
|
class BinaryValue implements \JsonSerializable
|
|
{
|
|
/** @var string Binary value. */
|
|
private $value;
|
|
|
|
/**
|
|
* @param mixed $value A binary value compatible with Guzzle streams.
|
|
*
|
|
* @see GuzzleHttp\Stream\Stream::factory
|
|
*/
|
|
public function __construct($value)
|
|
{
|
|
if (!is_string($value)) {
|
|
$value = Psr7\stream_for($value);
|
|
}
|
|
$this->value = (string) $value;
|
|
}
|
|
|
|
public function jsonSerialize()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|