Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?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);
- }
|