選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
261B

  1. <?php
  2. namespace Lc\ShopBundle\Context;
  3. interface MerchantUtilsInterface
  4. {
  5. /**
  6. * Retourne la tva par défaut du merchant courant
  7. *
  8. * @return TaxRateInterface
  9. */
  10. public function getMerchantCurrentTaxRate();
  11. }