Your IP : 3.143.17.75


Current Path : /var/www/www-root/data/www.catalog.monolith-realty.ru/bitrix/modules/main/lib/web/
Upload File :
Current File : /var/www/www-root/data/www.catalog.monolith-realty.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())
		;
	}
}