...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/statistics/statisticentrybase.php
- Класс: Bitrix\Crm\Statistics\StatisticEntryBase
- Вызов: StatisticEntryBase::nullSafeCompareDates
static function nullSafeCompareDates(Date $first = null, Date $second = null) { $firstStamp = $first !== null ? $first->getTimestamp() : 0; $secondStamp = $second !== null ? $second->getTimestamp() : 0; return ($firstStamp - $secondStamp); }