No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <?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);
- }
|