選択できるのは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. }