コード例 #1
0
ファイル: Paypal.php プロジェクト: sonata-project/ecommerce
 /**
  * {@inheritdoc}
  */
 public function isAddableProduct(BasketInterface $basket, ProductInterface $product)
 {
     if (!$product->isRecurrentPayment()) {
         return true;
     }
     return false;
 }