amount . ' le ' . $this->getPaidAt()->format('d-m-y') . ' par ' . $this->getMeanPayment(); } public function getOrderShop(): ?OrderShopInterface { return $this->orderShop; } public function setOrderShop(?OrderShopInterface $orderShop): self { $this->orderShop = $orderShop; return $this; } public function setEditable(bool $editable): self { $this->editable = $editable; return $this; } public function getEditable(): ?bool { return $this->editable; } public function isEditable(): ?bool { return $this->editable; } }