X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/aws/aws-sdk-php/src/DynamoDb
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
aws
/
aws-sdk-php
/
src
/
DynamoDb
/
📁
..
📄
BinaryValue.php
(708 B)
📄
DynamoDbClient.php
(10.21 KB)
📁
Exception
📄
LockingSessionConnection.php
(1.89 KB)
📄
Marshaler.php
(9.52 KB)
📄
NumberValue.php
(523 B)
📄
SessionConnectionConfigTrait.php
(5.85 KB)
📄
SessionConnectionInterface.php
(1017 B)
📄
SessionHandler.php
(7.67 KB)
📄
SetValue.php
(838 B)
📄
StandardSessionConnection.php
(4.46 KB)
📄
WriteRequestBatch.php
(9.34 KB)
Editing: BinaryValue.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; } }
Upload File
Create Folder