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;
class CompanyData implements CompanyDataInterface
{
/** @var int */
protected $id;
/** @var string */
protected $name;
protected $vatNumber;
protected $street;
protected $city;
protected $postcode;
protected $countryCode;
protected $seller;
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 getName(): ?string
return $this->name;
public function setName(?string $name): void
$this->name = $name;
public function getStreet(): ?string
return $this->street;
public function setStreet(?string $street): void
$this->street = $street;
public function getCity(): ?string
return $this->city;
public function setCity(?string $city): void
$this->city = $city;
public function getPostcode(): ?string
return $this->postcode;
public function setPostcode(?string $postcode): void
$this->postcode = $postcode;
public function getCountryCode(): ?string
return $this->countryCode;
public function setCountryCode(?string $countryCode): void
$this->countryCode = $countryCode;
public function getSeller(): ?string
return $this->seller;
public function setSeller(?string $seller): void
$this->seller = $seller;