您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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