mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
37 lines
538 B
PHP
37 lines
538 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: mhmj
|
|
* Date: 28/05/2019
|
|
* Time: 11:11 AM
|
|
*/
|
|
|
|
namespace App\Classes\Modules\Orders\DataTransferObjects;
|
|
|
|
|
|
class AddressObject
|
|
{
|
|
/** @var string */
|
|
private $addressId;
|
|
|
|
/**
|
|
* AddressObject constructor.
|
|
* @param string $addressId
|
|
*/
|
|
public function __construct(string $addressId)
|
|
{
|
|
$this->addressId = $addressId;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getAddressId(): string
|
|
{
|
|
return $this->addressId;
|
|
}
|
|
|
|
|
|
|
|
|
|
} |