\Guzzle\Plugin\ErrorResponseErrorResponsePlugin

Converts generic Guzzle response exceptions into errorResponse exceptions

Summary

Methods
Properties
Constants
getSubscribedEvents()
onCommandBeforeSend()
No public properties found
No constants found
getErrorClosure()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

getSubscribedEvents()

getSubscribedEvents() : array

Returns an array of event names this subscriber wants to listen to.

The array keys are event names and the value can be:

  • The method name to call (priority defaults to 0)
  • An array composed of the method name to call and the priority
  • An array of arrays composed of the method names to call and respective priorities, or 0 if unset

For instance:

  • array('eventName' => 'methodName')
  • array('eventName' => array('methodName', $priority))
  • array('eventName' => array(array('methodName1', $priority), array('methodName2')))

Returns

array —

The event names to listen to

onCommandBeforeSend()

onCommandBeforeSend(\Guzzle\Common\Event  $event) 

Adds a listener to requests before they sent from a command

Parameters

\Guzzle\Common\Event $event

Event emitted

getErrorClosure()

getErrorClosure(\Guzzle\Http\Message\RequestInterface  $request, \Guzzle\Service\Command\CommandInterface  $command, \Guzzle\Service\Description\Operation  $operation) : \Closure

Parameters

\Guzzle\Http\Message\RequestInterface $request

Request that received an error

\Guzzle\Service\Command\CommandInterface $command

Command that created the request

\Guzzle\Service\Description\Operation $operation

Operation that defines the request and errors

Throws

\Guzzle\Plugin\ErrorResponse\Exception\ErrorResponseException

Returns

\Closure —

Returns a closure