Exemplo n.º 1
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     /** @noinspection SpellCheckingInspection */
     $isKrediidipank = 'KREP' == $response->getParam('VK_SND_ID', false);
     return $isKrediidipank && parent::canHandlePaymentResponse($response);
 }
Exemplo n.º 2
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     $isSEB = 'EYP' == $response->getParam('VK_SND_ID', false);
     return $isSEB && parent::canHandlePaymentResponse($response);
 }
Exemplo n.º 3
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     return $response->hasParam('VK_SERVICE');
 }
Exemplo n.º 4
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     /** @noinspection SpellCheckingInspection */
     return $response->hasParam('SOLOPMT_RETURN_MAC');
 }
Exemplo n.º 5
0
 /**
  * @inheritdoc
  */
 public function canHandlePaymentResponse(Response $response)
 {
     return 'afb' == $response->getParam('action', false);
     // go figure
 }