示例#1
0
文件: Form.php 项目: aiesh/magento2
 /**
  * Check payment method model
  *
  * @param \Magento\Payment\Model\MethodInterface|null $method
  * @return bool
  */
 protected function _canUseMethod($method)
 {
     return $method && $method->canUseInternal() && parent::_canUseMethod($method);
 }
 /**
  * Check whether payment method is applicable to quote
  * Purposed to allow use in controllers some logic that was implemented in blocks only before
  *
  * @param MethodInterface $paymentMethod
  * @param \Magento\Quote\Model\Quote $quote
  * @return bool
  */
 public function isApplicable(MethodInterface $paymentMethod, Quote $quote)
 {
     return $paymentMethod->canUseInternal();
 }