Esempio n. 1
0
 /**
  * Return status handlers list
  *
  * @return array
  */
 public static function getStatusHandlers()
 {
     $handlers = parent::getStatusHandlers();
     array_unshift($handlers[static::STATUS_QUEUED][static::STATUS_DECLINED], 'declinePIN');
     array_unshift($handlers[static::STATUS_QUEUED][static::STATUS_CANCELED], 'declinePIN');
     return $handlers;
 }