You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 satır
438B

  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. }