123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Aws\DynamoDb;
- class NumberValue implements \JsonSerializable
- {
-
- private $value;
-
- public function __construct($value)
- {
- $this->value = (string) $value;
- }
-
- public function jsonSerialize()
- {
- return $this->value;
- }
- public function __toString()
- {
- return $this->value;
- }
- }
|