1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
objectstatustrait.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Sync\Office365\Util;
4
6{
8 protected $objectStatus;
9
13 public function getStatus(): ObjectStatus
14 {
15 if (!$this->objectStatus)
16 {
17 $this->objectStatus = new ObjectStatus();
18 }
19
20 return $this->objectStatus;
21 }
22}