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

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