/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Api
NameSizeModeActions
ErrorParser/-0755rm
Parser/-0755rm
Serializer/-0755rm
AbstractModel.php20020644editdlrm
ApiProvider.php76530644editdlrm
DateTimeResult.php37410644editdlrm
DocModel.php34720644editdlrm
ListShape.php7860644editdlrm
MapShape.php11720644editdlrm
Operation.php34560644editdlrm
Service.php138510644editdlrm
Shape.php18550644editdlrm
ShapeMap.php14970644editdlrm
StructureShape.php16870644editdlrm
TimestampShape.php14810644editdlrm
Validator.php102810644editdlrm
Edit: /home/techb158/ileadtechnology.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; } }