PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Service
/
Command
<?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']; } }
[+]
..
[-] ClosureCommand.php
[edit]
[-] ResponseParserInterface.php
[edit]
[+]
LocationVisitor
[-] AbstractCommand.php
[edit]
[-] DefaultRequestSerializer.php
[edit]
[-] OperationResponseParser.php
[edit]
[-] RequestSerializerInterface.php
[edit]
[-] CommandInterface.php
[edit]
[-] ResponseClassInterface.php
[edit]
[-] OperationCommand.php
[edit]
[-] DefaultResponseParser.php
[edit]
[-] CreateResponseClassEvent.php
[edit]
[+]
Factory