Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
518B

  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension ;
  3. interface PriceInterface
  4. {
  5. /**
  6. * Retourne le prix hérité
  7. *
  8. * @return float
  9. */
  10. public function getPriceInherited();
  11. /**
  12. * Retourne le TaxRate hérité
  13. *
  14. * @return entity
  15. */
  16. public function getTaxRateInherited();
  17. /**
  18. * Retourne le Unit hérité
  19. *
  20. * @return float
  21. */
  22. public function getUnitInherited();
  23. }