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

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