/home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/Api
NameSizeModeActions
ErrorParser/-0755rm
Parser/-0755rm
Serializer/-0755rm
AbstractModel.php15610644editdlrm
ApiProvider.php76530644editdlrm
DateTimeResult.php29390644editdlrm
DocModel.php31560644editdlrm
ListShape.php7860644editdlrm
MapShape.php11720644editdlrm
Operation.php22760644editdlrm
Service.php123810644editdlrm
Shape.php17520644editdlrm
ShapeMap.php14970644editdlrm
StructureShape.php16870644editdlrm
TimestampShape.php14720644editdlrm
Validator.php83570644editdlrm
Edit: /home/techb158/immovalet.com/vendor/aws/aws-sdk-php/src/Api/ShapeMap.php (1497B)
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; } }