Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TaxRateInterface.php 438B

il y a 3 ans
il y a 3 ans
il y a 3 ans
1234567891011121314151617181920
  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Config;
  3. /**
  4. * @ORM\MappedSuperclass()
  5. */
  6. interface TaxRateInterface
  7. {
  8. public function getBehaviorTaxRateChoices(): array;
  9. public function getTitle(): ?string;
  10. public function setTitle(string $title): \Lc\CaracoleBundle\Model\Config\TaxRateModel;
  11. public function getValue(): ?float;
  12. public function setValue(float $value): \Lc\CaracoleBundle\Model\Config\TaxRateModel;
  13. }