Cart Items
The method Cart::getContent() returns a collection of items.
Apart from the above methods, you can also get the price of an item with or without item level conditions applied.
These methods do not apply cart level conditions.
// With no conditions, just the price * quantity
$item->getPriceSum();
// With conditions applied get the price of a single quantity
$item->getPriceWithConditions();
// Get the sum with conditions applied
$item->getPriceSumWithConditions();
// Without conditions applied
$item->getPriceSumWithConditions();