Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Service
/
Command
:
CreateResponseClassEvent.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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']; } }