for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Component\Core\Model;
/** @final */
class ShopBillingData implements ShopBillingDataInterface
{
/** @var int|null */
protected $id;
/** @var string|null */
protected $company;
protected $taxId;
protected $countryCode;
protected $street;
protected $city;
protected $postcode;
public function getCompany(): ?string
return $this->company;
}
public function setCompany(?string $company): void
$this->company = $company;
public function getTaxId(): ?string
return $this->taxId;
public function setTaxId(?string $taxId): void
$this->taxId = $taxId;
public function getCountryCode(): ?string
return $this->countryCode;
public function setCountryCode(?string $countryCode): void
$this->countryCode = $countryCode;
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;