OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
knoblyExpressLandingPage
/
vendor
/
aws
/
aws-sdk-php
/
src
/
DynamoDb
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/21/2024 10:05:25 AM
rwxr-xr-x
📄
BinaryValue.php
780 bytes
08/21/2024 10:03:15 AM
rw-r--r--
📄
DynamoDbClient.php
13.78 KB
08/21/2024 10:03:15 AM
rw-r--r--
📁
Exception
-
08/21/2024 10:05:04 AM
rwxr-xr-x
📄
LockingSessionConnection.php
1.94 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
Marshaler.php
9.83 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
NumberValue.php
582 bytes
08/21/2024 10:03:15 AM
rw-r--r--
📄
SessionConnectionConfigTrait.php
6.11 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
SessionConnectionInterface.php
1.04 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
SessionHandler.php
8.08 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
SetValue.php
1010 bytes
08/21/2024 10:03:15 AM
rw-r--r--
📄
StandardSessionConnection.php
4.61 KB
08/21/2024 10:03:15 AM
rw-r--r--
📄
WriteRequestBatch.php
9.6 KB
08/21/2024 10:03:15 AM
rw-r--r--
Editing: SetValue.php
Close
<?php namespace Aws\DynamoDb; /** * Special object to represent a DynamoDB set (SS/NS/BS) value. */ class SetValue implements \JsonSerializable, \Countable, \IteratorAggregate { /** @var array Values in the set as provided. */ private $values; /** * @param array $values Values in the set. */ public function __construct(array $values) { $this->values = $values; } /** * Get the values formatted for PHP and JSON. * * @return array */ public function toArray() { return $this->values; } /** * @return int */ #[\ReturnTypeWillChange] public function count() { return count($this->values); } #[\ReturnTypeWillChange] public function getIterator() { return new \ArrayIterator($this->values); } #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->toArray(); } }