/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/Shape.php (1855B)
StructureShape::class, 'map' => MapShape::class, 'list' => ListShape::class, 'timestamp' => TimestampShape::class, 'integer' => Shape::class, 'double' => Shape::class, 'float' => Shape::class, 'long' => Shape::class, 'string' => Shape::class, 'byte' => Shape::class, 'character' => Shape::class, 'blob' => Shape::class, 'boolean' => Shape::class ]; if (isset($definition['shape'])) { return $shapeMap->resolve($definition); } if (!isset($map[$definition['type']])) { throw new \RuntimeException('Invalid type: ' . print_r($definition, true)); } $type = $map[$definition['type']]; return new $type($definition, $shapeMap); } /** * Get the type of the shape * * @return string */ public function getType() { return $this->definition['type']; } /** * Get the name of the shape * * @return string */ public function getName() { return $this->definition['name']; } /** * Get a context param definition. */ public function getContextParam() { return $this->contextParam; } }