You are here

interface IPNHandlerInterface in Commerce PayPal 8

Provides a handler for IPN requests from PayPal.

Hierarchy

Expanded class hierarchy of IPNHandlerInterface

All classes that implement IPNHandlerInterface

File

src/IPNHandlerInterface.php, line 10

Namespace

Drupal\commerce_paypal
View 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

Namesort descending Modifiers Type Description Overrides
IPNHandlerInterface::process public function Processes an incoming IPN request. 1