Your IP : 172.71.120.3


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/main/lib/web/
Upload File :
Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/main/lib/web/cryptocookie.php

<?php
namespace Bitrix\Main\Web;

class CryptoCookie extends Cookie
{
	public function copyAttributesTo(Cookie $cookie): void
	{
		$cookie
			->setDomain($this->getDomain())
			->setExpires($this->getExpires())
			->setHttpOnly($this->getHttpOnly())
			->setSpread($this->getSpread())
			->setPath($this->getPath())
			->setSecure($this->getSecure())
		;
	}
}