JEMBOT MAWOT Bypass Shell
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
declare(strict_types=1);
namespace PrestaShop\PrestaShop\Core\Domain\Address\Command;
use PrestaShop\PrestaShop\Core\Domain\Country\Exception\CountryConstraintException;
use PrestaShop\PrestaShop\Core\Domain\Country\ValueObject\CountryId;
use PrestaShop\PrestaShop\Core\Domain\State\Exception\StateConstraintException;
use PrestaShop\PrestaShop\Core\Domain\State\ValueObject\NoStateId;
use PrestaShop\PrestaShop\Core\Domain\State\ValueObject\StateId;
use PrestaShop\PrestaShop\Core\Domain\State\ValueObject\StateIdInterface;
class AbstractEditAddressCommand
{
/**
* @var string|null
*/
protected $addressAlias;
/**
* @var string|null
*/
protected $firstName;
/**
* @var string|null
*/
protected $lastName;
/**
* @var string|null
*/
protected $address;
/**
* @var string|null
*/
protected $city;
/**
* @var string|null
*/
protected $postCode;
/**
* @var CountryId|null
*/
protected $countryId;
/**
* @var string|null
*/
protected $dni;
/**
* @var string|null
*/
protected $company;
/**
* @var string|null
*/
protected $vatNumber;
/**
* @var string|null
*/
protected $address2;
/**
* @var StateIdInterface|null
*/
protected $stateId;
/**
* @var string|null
*/
protected $homePhone;
/**
* @var string|null
*/
protected $mobilePhone;
/**
* @var string|null
*/
protected $other;
/**
* @return string|null
*/
public function getAddressAlias(): ?string
{
return $this->addressAlias;
}
/**
* @param string $addressAlias
*
* @return self
*/
public function setAddressAlias(string $addressAlias): self
{
$this->addressAlias = $addressAlias;
return $this;
}
/**
* @return string|null
*/
public function getFirstName(): ?string
{
return $this->firstName;
}
/**
* @param string $firstName
*
* @return self
*/
public function setFirstName(string $firstName): self
{
$this->firstName = $firstName;
return $this;
}
/**
* @return string|null
*/
public function getLastName(): ?string
{
return $this->lastName;
}
/**
* @param string $lastName
*
* @return self
*/
public function setLastName(string $lastName): self
{
$this->lastName = $lastName;
return $this;
}
/**
* @return string|null
*/
public function getAddress(): ?string
{
return $this->address;
}
/**
* @param string $address
*
* @return self
*/
public function setAddress(string $address): self
{
$this->address = $address;
return $this;
}
/**
* @return string|null
*/
public function getCity(): ?string
{
return $this->city;
}
/**
* @param string $city
*
* @return self
*/
public function setCity(string $city): self
{
$this->city = $city;
return $this;
}
/**
* @return string|null
*/
public function getPostCode(): ?string
{
return $this->postCode;
}
/**
* @param string $postCode
*
* @return self
*/
public function setPostCode(string $postCode): self
{
$this->postCode = $postCode;
return $this;
}
/**
* @return CountryId|null
*/
public function getCountryId(): ?CountryId
{
return $this->countryId;
}
/**
* @param int $countryId
*
* @return self
*
* @throws CountryConstraintException
*/
public function setCountryId(int $countryId): self
{
$this->countryId = new CountryId($countryId);
return $this;
}
/**
* @return string|null
*/
public function getDni(): ?string
{
return $this->dni;
}
/**
* @param string $dni
*
* @return self
*/
public function setDni(string $dni): self
{
$this->dni = $dni;
return $this;
}
/**
* @return string|null
*/
public function getCompany(): ?string
{
return $this->company;
}
/**
* @param string $company
*
* @return self
*/
public function setCompany(string $company): self
{
$this->company = $company;
return $this;
}
/**
* @return string|null
*/
public function getVatNumber(): ?string
{
return $this->vatNumber;
}
/**
* @param string $vatNumber
*
* @return self
*/
public function setVatNumber(string $vatNumber): self
{
$this->vatNumber = $vatNumber;
return $this;
}
/**
* @return string|null
*/
public function getAddress2(): ?string
{
return $this->address2;
}
/**
* @param string $address2
*
* @return self
*/
public function setAddress2(string $address2): self
{
$this->address2 = $address2;
return $this;
}
/**
* @return StateIdInterface|null
*/
public function getStateId(): ?StateIdInterface
{
return $this->stateId;
}
/**
* @param int $stateId
*
* @return self
*
* @throws StateConstraintException
*/
public function setStateId(int $stateId): self
{
$this->stateId = NoStateId::NO_STATE_ID_VALUE === $stateId ? new NoStateId() : new StateId($stateId);
return $this;
}
/**
* @return string|null
*/
public function getHomePhone(): ?string
{
return $this->homePhone;
}
/**
* @param string $homePhone
*
* @return self
*/
public function setHomePhone(string $homePhone): self
{
$this->homePhone = $homePhone;
return $this;
}
/**
* @return string|null
*/
public function getMobilePhone(): ?string
{
return $this->mobilePhone;
}
/**
* @param string $mobilePhone
*
* @return self
*/
public function setMobilePhone(string $mobilePhone): self
{
$this->mobilePhone = $mobilePhone;
return $this;
}
/**
* @return string|null
*/
public function getOther(): ?string
{
return $this->other;
}
/**
* @param string $other
*
* @return self
*/
public function setOther(string $other): self
{
$this->other = $other;
return $this;
}
}
xxxxx1.0, XXX xxxx