vendor/sylius/sylius/src/Sylius/Component/Core/Model/Payment.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Component\Core\Model;
  12. use Sylius\Component\Order\Model\OrderInterface as BaseOrderInterface;
  13. use Sylius\Component\Payment\Model\Payment as BasePayment;
  14. class Payment extends BasePayment implements PaymentInterface
  15. {
  16.     /** @var BaseOrderInterface */
  17.     protected $order;
  18.     public function getOrder(): ?BaseOrderInterface
  19.     {
  20.         return $this->order;
  21.     }
  22.     public function setOrder(?BaseOrderInterface $order): void
  23.     {
  24.         $this->order $order;
  25.     }
  26. }