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

	return $arg;
}