Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
objectstatustrait.php
1<?php
2
4
5trait ObjectStatusTrait
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}