Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/pull/lib/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/pull/lib/transportresult.php

<?php

namespace Bitrix\Pull;

class TransportResult extends \Bitrix\Main\Result
{
	protected string $remoteAddress = '';

	public function getRemoteAddress(): string
	{
		return $this->remoteAddress;
	}

	public function withRemoteAddress(string $remoteAddress): TransportResult
	{
		$this->remoteAddress = $remoteAddress;
		return $this;
	}
}