Example #1
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isLhv = 'LHV' == $response->getParam('VK_SND_ID', false);
     return $isLhv && parent::canHandlePaymentResponse($response);
 }
Example #2
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isSwedbank = 'HP' == $response->getParam('VK_SND_ID', false);
     return $isSwedbank && parent::canHandlePaymentResponse($response);
 }
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     /** @noinspection SpellCheckingInspection */
     $isKrediidipank = 'KREP' == $response->getParam('VK_SND_ID', false);
     return $isKrediidipank && parent::canHandlePaymentResponse($response);
 }
Example #4
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isDanske = 'SAMPOPANK' == $response->getParam('VK_SND_ID', false);
     return $isDanske && parent::canHandlePaymentResponse($response);
 }