__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws\DynamoDb;
/**
* Special object to represent a DynamoDB Number (N) value.
*/
class NumberValue implements \JsonSerializable
{
/** @var string Number value. */
private $value;
/**
* @param string|int|float $value A number value.
*/
public function __construct($value)
{
$this->value = (string) $value;
}
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->value;
}
public function __toString()
{
return $this->value;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception | Folder | 0777 |
|
|
| BinaryValue.php | File | 743 B | 0777 |
|
| DynamoDbClient.php | File | 13.58 KB | 0777 |
|
| LockingSessionConnection.php | File | 1.89 KB | 0777 |
|
| Marshaler.php | File | 9.52 KB | 0777 |
|
| NumberValue.php | File | 552 B | 0777 |
|
| SessionConnectionConfigTrait.php | File | 5.85 KB | 0777 |
|
| SessionConnectionInterface.php | File | 1017 B | 0777 |
|
| SessionHandler.php | File | 7.85 KB | 0777 |
|
| SetValue.php | File | 960 B | 0777 |
|
| StandardSessionConnection.php | File | 4.46 KB | 0777 |
|
| WriteRequestBatch.php | File | 9.34 KB | 0777 |
|