Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 657 Bytes

UPGRADE-1.3.md

File metadata and controls

27 lines (23 loc) · 657 Bytes

UPGRADE FROM 1.2.x to 1.3

Configuration

If you upgrade to version 1.3.x you have to check your configuration classes. The ConfigurationInterace changes and two functions has been added.

/**
  * Gets the request factory callback if it is set
  * This callback can be used to manipulate the request before its returned.
  *
  * @return \Closure
  */
public function getRequestFactory();
/**
 * Gets the responsetransformer factory callback if it is set
 * This callback can be used to manipulate the request before its returned.
 *
 * @return \Closure
 */
public function getResponseTransformerFactory();