1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
cryptocookie.php
См. документацию.
1<?php
2
3namespace Bitrix\Main\Web;
4
9class CryptoCookie extends Cookie
10{
16 public function copyAttributesTo(Cookie $cookie): void
17 {
18 $cookie
19 ->setDomain($this->getDomain())
20 ->setExpires($this->getExpires())
21 ->setHttpOnly($this->getHttpOnly())
22 ->setSpread($this->getSpread())
23 ->setPath($this->getPath())
24 ->setSecure($this->getSecure())
25 ;
26 }
27}