ListShape.php 786 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace Aws\Api;
  3. /**
  4. * Represents a list shape.
  5. */
  6. class ListShape extends Shape
  7. {
  8. private $member;
  9. public function __construct(array $definition, ShapeMap $shapeMap)
  10. {
  11. $definition['type'] = 'list';
  12. parent::__construct($definition, $shapeMap);
  13. }
  14. /**
  15. * @return Shape
  16. * @throws \RuntimeException if no member is specified
  17. */
  18. public function getMember()
  19. {
  20. if (!$this->member) {
  21. if (!isset($this->definition['member'])) {
  22. throw new \RuntimeException('No member attribute specified');
  23. }
  24. $this->member = Shape::create(
  25. $this->definition['member'],
  26. $this->shapeMap
  27. );
  28. }
  29. return $this->member;
  30. }
  31. }