for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.shop and write us
* an email on [email protected].
*/
declare(strict_types=1);
namespace BitBag\SyliusInvoicingPlugin\Entity;
use Sylius\Component\Core\Model\OrderInterface;
class Invoice implements InvoiceInterface
{
/** @var int */
protected $id;
/** @var string */
protected $vatNumber;
protected $path;
/** @var OrderInterface */
protected $order;
public function getId(): ?int
return $this->id;
}
public function getVatNumber(): ?string
return $this->vatNumber;
public function setVatNumber(?string $vatNumber): void
$this->vatNumber = $vatNumber;
public function getPath(): ?string
return $this->path;
public function setPath(?string $path): void
$this->path = $path;
public function getOrder(): OrderInterface
return $this->order;
public function setOrder(?OrderInterface $order): void
$this->order = $order;