• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/service/worktime/action/shiftwithdate.php
  • Класс: BitrixTimemanServiceWorktimeActionShiftWithDate
  • Вызов: ShiftWithDate::isEqualsTo
public function isEqualsTo(?ShiftWithDate $otherShiftWithDate)
{
	if (!$otherShiftWithDate)
	{
		return false;
	}
	return $this->getShift()->getId() === $otherShiftWithDate->getShift()->getId()
		   &&
		   $this->getDateTimeStart()->getTimestamp() === $otherShiftWithDate->getDateTimeStart()->getTimestamp();
}