| Total Complexity | 3 | 
| Total Lines | 27 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 14 | class CartItemsProductProvider implements CartItemsProductProviderInterface  | 
            ||
| 15 | { | 
            ||
| 16 | protected CartPageToProductStorageClientInterface $productStorageClient;  | 
            ||
| 17 | |||
| 18 | public function __construct(CartPageToProductStorageClientInterface $productStorageClient)  | 
            ||
| 19 |     { | 
            ||
| 20 | $this->productStorageClient = $productStorageClient;  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * @param array<\Generated\Shared\Transfer\ItemTransfer> $cartItems  | 
            ||
| 25 | * @param string $locale  | 
            ||
| 26 | *  | 
            ||
| 27 | * @return array<\Generated\Shared\Transfer\ProductViewTransfer>  | 
            ||
| 28 | */  | 
            ||
| 29 | public function getItemsProducts(array $cartItems, string $locale): array  | 
            ||
| 41 | }  | 
            ||
| 42 | }  | 
            ||
| 43 |