/**
  * {@inheritdoc}
  */
 public function processCallback(PaymentTransaction $paymentTransaction, CallbackResponse $callbackResponse)
 {
     $paymentTransaction->setProcessorType(PaymentTransaction::PROCESSOR_CALLBACK);
     $paymentTransaction->setProcessorName($callbackResponse->getType());
     parent::processCallback($paymentTransaction, $callbackResponse);
 }