Exemple #1
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isLhv = 'LHV' == $response->getParam('VK_SND_ID', false);
     return $isLhv && parent::canHandlePaymentResponse($response);
 }
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     /** @noinspection SpellCheckingInspection */
     $isKrediidipank = 'KREP' == $response->getParam('VK_SND_ID', false);
     return $isKrediidipank && parent::canHandlePaymentResponse($response);
 }
 /**
  * @inheritdoc
  */
 public function loadTransactionFromResponse(Response $response, Transaction $transaction)
 {
     $transaction->setTransactionID($response->getParam('VK_STAMP', false));
     $transaction->setReference($response->getParam('VK_REF', false));
     $transaction->setSum($response->getParam('VK_AMOUNT', false));
     $transaction->setComment($response->getParam('VK_MSG', false));
     $transaction->setCurrency($response->getParam('VK_CURR', false));
     $transaction->setLanguage($response->getParam('VK_LANG', false));
 }
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isSwedbank = 'HP' == $response->getParam('VK_SND_ID', false);
     return $isSwedbank && parent::canHandlePaymentResponse($response);
 }
Exemple #5
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     return 'afb' == $response->getParam('action', false);
     // go figure
 }
Exemple #6
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isDanske = 'SAMPOPANK' == $response->getParam('VK_SND_ID', false);
     return $isDanske && parent::canHandlePaymentResponse($response);
 }