vendor/shopware/core/Checkout/Cart/LineItem/CartDataCollection.php line 10

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Checkout\Cart\LineItem;
  3. use Shopware\Core\Framework\Struct\Collection;
  4. /**
  5.  * @extends Collection<mixed>
  6.  */
  7. class CartDataCollection extends Collection
  8. {
  9.     public function getApiAlias(): string
  10.     {
  11.         return 'cart_data_collection';
  12.     }
  13. }