PATH:
home
/
lab2454c
/
mact34.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Api
<?php namespace Aws\Api; /** * Represents a list shape. */ class ListShape extends Shape { private $member; public function __construct(array $definition, ShapeMap $shapeMap) { $definition['type'] = 'list'; parent::__construct($definition, $shapeMap); } /** * @return Shape * @throws \RuntimeException if no member is specified */ public function getMember() { if (!$this->member) { if (!isset($this->definition['member'])) { throw new \RuntimeException('No member attribute specified'); } $this->member = Shape::create( $this->definition['member'], $this->shapeMap ); } return $this->member; } }
[-] ApiProvider.php
[edit]
[-] AbstractModel.php
[edit]
[-] StructureShape.php
[edit]
[+]
Parser
[+]
..
[-] Shape.php
[edit]
[+]
Serializer
[-] DateTimeResult.php
[edit]
[-] Validator.php
[edit]
[-] TimestampShape.php
[edit]
[-] DocModel.php
[edit]
[+]
ErrorParser
[-] MapShape.php
[edit]
[-] ListShape.php
[edit]
[-] ShapeMap.php
[edit]
[-] Service.php
[edit]
[-] Operation.php
[edit]