/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/Operation.php (2276B)
definition['http']; } /** * Get the input shape of the operation. * * @return StructureShape */ public function getInput() { if (!$this->input) { if ($input = $this['input']) { $this->input = $this->shapeFor($input); } else { $this->input = new StructureShape([], $this->shapeMap); } } return $this->input; } /** * Get the output shape of the operation. * * @return StructureShape */ public function getOutput() { if (!$this->output) { if ($output = $this['output']) { $this->output = $this->shapeFor($output); } else { $this->output = new StructureShape([], $this->shapeMap); } } return $this->output; } /** * Get an array of operation error shapes. * * @return Shape[] */ public function getErrors() { if ($this->errors === null) { if ($errors = $this['errors']) { foreach ($errors as $key => $error) { $errors[$key] = $this->shapeFor($error); } $this->errors = $errors; } else { $this->errors = []; } } return $this->errors; } }