You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\Doctrine\Extension;
-
- interface PayoffInterface
- {
- public function setMeanPayment(?string $meanPayment);
-
- public function getMeanPayment(): ?string;
-
- public function getReference(): ?string;
-
- public function setReference(?string $reference);
-
- public function getPaidAt(): ?\DateTimeInterface;
-
- public function setPaidAt(?\DateTimeInterface $paidAt);
-
- public function getAmount(): ?float;
-
- public function setAmount(float $amount);
-
- public function getComment(): ?string;
-
- public function setComment(?string $comment);
- }
|