vendor/shopware/core/System/Tax/TaxCollection.php line 12

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\System\Tax;
  3. use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
  4. use Shopware\Core\Framework\Log\Package;
  5. /**
  6.  * @extends EntityCollection<TaxEntity>
  7.  */
  8. #[Package('customer-order')]
  9. class TaxCollection extends EntityCollection
  10. {
  11.     public function getApiAlias(): string
  12.     {
  13.         return 'tax_collection';
  14.     }
  15.     protected function getExpectedClass(): string
  16.     {
  17.         return TaxEntity::class;
  18.     }
  19. }