MapShape.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace Aws\Api;
  3. /**
  4. * Represents a map shape.
  5. */
  6. class MapShape extends Shape
  7. {
  8. /** @var Shape */
  9. private $value;
  10. /** @var Shape */
  11. private $key;
  12. public function __construct(array $definition, ShapeMap $shapeMap)
  13. {
  14. $definition['type'] = 'map';
  15. parent::__construct($definition, $shapeMap);
  16. }
  17. /**
  18. * @return Shape
  19. * @throws \RuntimeException if no value is specified
  20. */
  21. public function getValue()
  22. {
  23. if (!$this->value) {
  24. if (!isset($this->definition['value'])) {
  25. throw new \RuntimeException('No value specified');
  26. }
  27. $this->value = Shape::create(
  28. $this->definition['value'],
  29. $this->shapeMap
  30. );
  31. }
  32. return $this->value;
  33. }
  34. /**
  35. * @return Shape
  36. */
  37. public function getKey()
  38. {
  39. if (!$this->key) {
  40. $this->key = isset($this->definition['key'])
  41. ? Shape::create($this->definition['key'], $this->shapeMap)
  42. : new Shape(['type' => 'string'], $this->shapeMap);
  43. }
  44. return $this->key;
  45. }
  46. }