Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
getRawTotal example
return
$this
->
getTotal
(
)
;
}
/** * `getRaw() returns the total price of the cart before rounding. * * @return float The total price before rounding as float. */
public
function
getRaw
(
)
: float
{
return
$this
->price->
getRawTotal
(
)
;
}
}