Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 lines
362B

  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension;
  3. interface ReductionInterface
  4. {
  5. /**
  6. * Retourne le merchant courant en fonction du user ou du cookie du visitor
  7. *
  8. * @return MerchantInterface
  9. */
  10. public function getUnit();
  11. public function getValue();
  12. public function getBehaviorTaxRate();
  13. }