<?php
// CBitrixCloudCDNQuota :: setAllowedSize()
// /dist/bitrix/modules/bitrixcloud/classes/general/cdn_quota.php:55
public function setAllowedSize($allowed)
{
$this->allowed = doubleval($allowed);
if ($this->allowed < 0.0)
$this->allowed = 0.0;
return $this;
}