saleableItem = $saleableItem; $this->priceFactory = $priceFactory; $this->pool = $pool; $this->quantity = $quantity; $this->priceModels = []; } /** * Reset the Collection to the first element * * @return mixed|void */ public function rewind() { return $this->pool->rewind(); } /** * Return the current element * * @return \Magento\Framework\Pricing\Price\PriceInterface */ public function current() { return $this->get($this->key()); } /** * Return the key of the current element * * @return string */ public function key() { return $this->pool->key(); } /** * Move forward to next element * * @return mixed|void */ public function next() { return $this->pool->next(); } /** * Checks if current position is valid * * @return bool */ public function valid() { return $this->pool->valid(); } /** * Returns price model by code * * @param string $code * @return PriceInterface */ public function get($code) { if (!isset($this->priceModels[$code])) { $this->priceModels[$code] = $this->priceFactory->create( $this->saleableItem, $this->pool[$code], $this->quantity ); } return $this->priceModels[$code]; } }