/**
  * Executes payment gateway processor for customer return from payment form or 3D-auth
  *
  * @param       CallbackResponse        $callbackResponse       Callback object with data from payment gateway
  * @param       PaymentTransaction      $paymentTransaction     Payment transaction for processing
  *
  * @return      CallbackResponse                                Validated payment gateway callback
  */
 public function processCustomerReturn(CallbackResponse $callbackResponse, PaymentTransaction $paymentTransaction)
 {
     $callbackResponse->setType('customer_return');
     return $this->processPaynetEasyCallback($callbackResponse, $paymentTransaction);
 }