public function getTotalPrice() { $sum = 0.0; /** @var $product \Payu\Component\Product */ foreach ($this->collection as $product) { $sum += (int) $product->getQuantity() * (double) $product->getPrice(); } return $sum; }