BT
$money = null;vs
foreach ($this->getItems() as $item) {
$money = null === $money ? $item->getPrice() : $money->add($item->getPrice());
}
return $money;
$money = null;
foreach ($this->getItems() as $item) {
$money += $item->getPrice();
}
return $money;