createdBy = new NullAccount(); $this->createdAt = new \DateTimeImmutable('now'); } /** * Calculate total costs of order * * @return FloatInt * * @since 1.0.0 */ public function getTotalCosts() : FloatInt { $total = new FloatInt(); foreach ($this->elements as $element) { $total->add($element->costs); } return $total; } }