diff options
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php')
-rw-r--r-- | apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php deleted file mode 100644 index e05067841c9..00000000000 --- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Command/CreateResponseClassEvent.php +++ /dev/null @@ -1,32 +0,0 @@ -<?php - -namespace Guzzle\Service\Command; - -use Guzzle\Common\Event; - -/** - * Event class emitted with the operation.parse_class event - */ -class CreateResponseClassEvent extends Event -{ - /** - * Set the result of the object creation - * - * @param mixed $result Result value to set - */ - public function setResult($result) - { - $this['result'] = $result; - $this->stopPropagation(); - } - - /** - * Get the created object - * - * @return mixed - */ - public function getResult() - { - return $this['result']; - } -} |