示例#1
0
 /**
  * @return static
  */
 public function withCartItems(CartCalculator $cartCalculator)
 {
     foreach ($this->entity->getCartItems() as $cartItem) {
         $this->entityDTO->cartItems[] = $this->dtoBuilderFactory->getCartItemDTOBuilder($cartItem)->withAllData($cartCalculator->getPricing())->build();
     }
     return $this;
 }