1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
scheduleinterface.php
См. документацию.
1<?php
2
3declare(strict_types=1);
4
5namespace Bitrix\Socialnetwork\Integration\Calendar\ClosestWorkDate\Schedule;
6
7use Bitrix\Main\Type\DateTime;
8
10{
11 public function getShiftStart(?DateTime $date = null): DateTime;
12
13 public function getShiftEnd(?DateTime $date = null): DateTime;
14
15 public function getWorkDayDuration(?DateTime $date = null): int;
16
17 public function isWorkTime(DateTime $date): bool;
18
19 public function isWeekend(DateTime $date): bool;
20}