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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Doctrine\Extension ;
-
- interface PriceInterface
- {
- /**
- * Retourne le prix hérité
- *
- * @return float
- */
- public function getPriceInherited();
-
- /**
- * Retourne le TaxRate hérité
- *
- * @return entity
- */
- public function getTaxRateInherited();
-
- /**
- * Retourne le Unit hérité
- *
- * @return float
- */
- public function getUnitInherited();
- }
|