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.

TaxRateRepositoryQuery.php 304B

123456789101112131415
  1. <?php
  2. namespace domain\Config\TaxRate;
  3. use domain\_\AbstractRepositoryQuery;
  4. class TaxRateRepositoryQuery extends AbstractRepositoryQuery
  5. {
  6. protected TaxRateDefinition $definition;
  7. public function loadDependencies(): void
  8. {
  9. $this->loadDefinition(TaxRateDefinition::class);
  10. }
  11. }