1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
responseresult.php
См. документацию.
1<?php
2
3namespace Bitrix\Seo\Analytics\Services\Helpers\Yandex;
4
5use Bitrix\Main;
6
8final class ResponseResult extends Main\Result
9{
11 private mixed $response = null;
12
17 public function setResponse($response): self
18 {
19 $this->response = $response;
20
21 return $this;
22 }
23
25 public function getResponse(): mixed
26 {
27 return $this->response;
28 }
29}
$response
Определения result.php:21