Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?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);
- }
|