<?php
// CBitrixCloudMonitoringResult :: offsetSet()
// /dist/bitrix/modules/bitrixcloud/classes/general/monitoring_result.php:429
public function offsetSet($offset, $value)
{
if (is_null($offset))
{
$this->domains[] = $value;
}
else
{
$this->domains[$offset] = $value;
}
}