• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/util/assert.php
  • Класс: BitrixSaleLocationUtilAssert
  • Вызов: Assert::expectInteger
static function expectInteger($arg, $argName = '', $customMsg = '')
{
	$argInt = intval($arg);
	if($arg != $argInt)
		throw new MainArgumentException(self::formMessage('SALE_LOCATION_ASSERT_INTEGER_EXPECTED', $argName, $customMsg));

	return $argInt;
}