interface IPNHandlerInterface in Commerce PayPal 8
Provides a handler for IPN requests from PayPal.
Hierarchy
- interface \Drupal\commerce_paypal\IPNHandlerInterface
Expanded class hierarchy of IPNHandlerInterface
All classes that implement IPNHandlerInterface
File
- src/
IPNHandlerInterface.php, line 10
Namespace
Drupal\commerce_paypalView source
interface IPNHandlerInterface {
/**
* Processes an incoming IPN request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request.
*
* @return mixed
* The request data array.
*
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function process(Request $request);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
IPNHandlerInterface:: |
public | function | Processes an incoming IPN request. | 1 |