⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
olasjoys
/
src
/
Core
/
Domain
/
Address
/
Command
/
View File Name :
EditManufacturerAddressCommand.php
<?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) */ namespace PrestaShop\PrestaShop\Core\Domain\Address\Command; use PrestaShop\PrestaShop\Core\Domain\Address\Exception\AddressConstraintException; use PrestaShop\PrestaShop\Core\Domain\Address\ValueObject\AddressId; /** * Edits manufacturer address */ class EditManufacturerAddressCommand { /** * @var AddressId */ private $addressId; /** * @var int|null */ private $manufacturerId; /** * @var string|null */ private $lastName; /** * @var string|null */ private $firstName; /** * @var string|null */ private $address; /** * @var string|null */ private $city; /** * @var string|null */ private $address2; /** * @var int|null */ private $countryId; /** * @var string|null */ private $postCode; /** * @var int|null */ private $stateId; /** * @var string|null */ private $homePhone; /** * @var string|null */ private $mobilePhone; /** * @var string|null */ private $other; /** * @var string|null */ private $dni; /** * @param int $addressId * * @throws AddressConstraintException */ public function __construct($addressId) { $this->addressId = new AddressId($addressId); } /** * @return AddressId */ public function getAddressId() { return $this->addressId; } /** * @param AddressId $addressId */ public function setAddressId($addressId) { $this->addressId = $addressId; } /** * @return int|null */ public function getManufacturerId() { return $this->manufacturerId; } /** * @param int $manufacturerId * * @throws AddressConstraintException */ public function setManufacturerId($manufacturerId) { $this->assertIsNullOrNonNegativeInt($manufacturerId); $this->manufacturerId = $manufacturerId; } /** * @return string|null */ public function getLastName() { return $this->lastName; } /** * @param string|null $lastName */ public function setLastName($lastName) { $this->lastName = $lastName; } /** * @return string|null */ public function getFirstName() { return $this->firstName; } /** * @param string|null $firstName */ public function setFirstName($firstName) { $this->firstName = $firstName; } /** * @return string|null */ public function getAddress() { return $this->address; } /** * @param string|null $address */ public function setAddress($address) { $this->address = $address; } /** * @return string|null */ public function getCity() { return $this->city; } /** * @param string|null $city */ public function setCity($city) { $this->city = $city; } /** * @return string|null */ public function getAddress2() { return $this->address2; } /** * @param string|null $address2 */ public function setAddress2($address2) { $this->address2 = $address2; } /** * @return int|null */ public function getCountryId() { return $this->countryId; } /** * @param int|null $countryId */ public function setCountryId($countryId) { $this->countryId = $countryId; } /** * @return string|null */ public function getPostCode() { return $this->postCode; } /** * @param string|null $postCode */ public function setPostCode($postCode) { $this->postCode = $postCode; } /** * @return int|null */ public function getStateId() { return $this->stateId; } /** * @param int|null $stateId */ public function setStateId($stateId) { $this->stateId = $stateId; } /** * @return string|null */ public function getHomePhone() { return $this->homePhone; } /** * @param string|null $homePhone */ public function setHomePhone($homePhone) { $this->homePhone = $homePhone; } /** * @return string|null */ public function getMobilePhone() { return $this->mobilePhone; } /** * @param string|null $mobilePhone */ public function setMobilePhone($mobilePhone) { $this->mobilePhone = $mobilePhone; } /** * @return string|null */ public function getOther() { return $this->other; } /** * @param string|null $other */ public function setOther($other) { $this->other = $other; } /** * @return string|null */ public function getDni() { return $this->dni; } /** * @param string|null $dni */ public function setDni($dni) { $this->dni = $dni; } /** * @param mixed $value * * @throws AddressConstraintException */ private function assertIsNullOrNonNegativeInt($value) { if (null === $value || is_int($value) || 0 <= $value) { return; } throw new AddressConstraintException(sprintf('Invalid manufacturer id "%s" provided for address.', var_export($value, true)), AddressConstraintException::INVALID_MANUFACTURER_ID); } }