Exemple #1
0
 /**
  * Disable payment method if 3D Secure is enabled
  * @return bool
  */
 public function canUseForMultishipping()
 {
     if ($this->_is3DSEnabled()) {
         return false;
     }
     return parent::canUseForMultishipping();
 }