• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/runtimeprovider/analyticboardbatchprovider.php
  • Класс: BitrixReportVisualConstructorRuntimeProviderAnalyticBoardBatchProvider
  • Вызов: AnalyticBoardBatchProvider::sortResults
protected function sortResults(&$result)
{
	usort($result, function($a, $b)
	{
		/** @var BitrixReportVisualConstructorAnalyticBoardBatch $a */
		/** @var BitrixReportVisualConstructorAnalyticBoardBatch $b */
		return $a->getOrder() <=> $b->getOrder();
	});
}