* @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\OrderMessage\ValueObject; /** * Order message identity */ class OrderMessageId { /** * @var int */ private $orderMessageId; /** * @param int $orderMessageId */ public function __construct(int $orderMessageId) { $this->orderMessageId = $orderMessageId; } /** * @return int */ public function getValue(): int { return $this->orderMessageId; } }