vendor/shopware/core/System/Tax/Aggregate/TaxRule/TaxRuleCollection.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\System\Tax\Aggregate\TaxRule;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. /**
  5.  * @extends EntityCollection<TaxRuleEntity>
  6.  */
  7. class TaxRuleCollection extends EntityCollection
  8. {
  9.     public function sortByTypePosition(): void
  10.     {
  11.         $this->sort(function (TaxRuleEntity $entityATaxRuleEntity $entityB) {
  12.             return $entityA->getType()->getPosition() <=> $entityB->getType()->getPosition();
  13.         });
  14.     }
  15.     public function getApiAlias(): string
  16.     {
  17.         return 'tax_rule_collection';
  18.     }
  19.     protected function getExpectedClass(): string
  20.     {
  21.         return TaxRuleEntity::class;
  22.     }
  23. }