Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- <?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);
- }
|