| Current Path : /var/www/homesaver/www/bitrix/modules/pull/lib/ |
| 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;
}
}