- <?php
-
- namespace Lc\ShopBundle\Model;
-
- use Doctrine\ORM\Mapping as ORM;
- use Lc\ShopBundle\Context\OrderPaymentInterface;
- use Lc\ShopBundle\Context\OrderPayoffInterface;
- use Lc\ShopBundle\Context\ReductionInterface;
-
-
- abstract class OrderRefund extends AbstractEntity implements OrderPayoffInterface
- {
- use OrderPayoffTrait;
-
-
-
- protected $deliveryRefundAmount;
-
-
-
- protected $document;
-
- public function getDeliveryRefundAmount(): ?float
- {
- return $this->deliveryRefundAmount;
- }
-
- public function setDeliveryRefundAmount(?float $deliveryRefundAmount): self
- {
- $this->deliveryRefundAmount = $deliveryRefundAmount;
-
- return $this;
- }
-
- public function getDocument(): ?Document
- {
- return $this->document;
- }
-
- public function setDocument(Document $document): self
- {
- $this->document = $document;
-
- return $this;
- }
- }
|