Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

TaxRateInterface.php 438B

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