Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

TaxRateManager.php 282B

1234567891011121314151617
  1. <?php
  2. namespace common\logic\Config\TaxRate;
  3. use common\logic\BaseManager;
  4. /**
  5. * @mixin TaxRateRepository
  6. * @mixin TaxRateBuilder
  7. */
  8. class TaxRateManager extends BaseManager
  9. {
  10. public function __construct()
  11. {
  12. $this->setContainer(new TaxRateContainer());
  13. }
  14. }